Sync ContactRecords as whitelisted if they're a system contact.

master
Greyson Parrelli 2020-07-22 10:11:23 -04:00
parent 5dc51c34ea
commit f0063b4b0d
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ public final class StorageSyncModels {
.setGivenName(recipient.getProfileName().getGivenName())
.setFamilyName(recipient.getProfileName().getFamilyName())
.setBlocked(recipient.isBlocked())
.setProfileSharingEnabled(recipient.isProfileSharing())
.setProfileSharingEnabled(recipient.isProfileSharing() || recipient.getSystemContactUri() != null)
.setIdentityKey(recipient.getIdentityKey())
.setIdentityState(localToRemoteIdentityState(recipient.getIdentityStatus()))
.setArchived(archived.contains(recipient.getId()))