mirror of
https://github.com/aljazceru/signal-cli.git
synced 2026-01-10 01:14:25 +01:00
@@ -270,7 +270,9 @@ public class ContactRecordProcessor extends DefaultStorageRecordProcessor<Signal
|
||||
.withNickNameGivenName(nullIfEmpty(contactProto.givenName))
|
||||
.withNickNameFamilyName(nullIfEmpty(contactProto.familyName))
|
||||
.withNote(nullIfEmpty(contactProto.note))
|
||||
.withUnregisteredTimestamp(contactProto.unregisteredAtTimestamp);
|
||||
.withUnregisteredTimestamp(contactProto.unregisteredAtTimestamp == 0
|
||||
? null
|
||||
: contactProto.unregisteredAtTimestamp);
|
||||
account.getRecipientStore().storeContact(connection, recipientId, newContact.build());
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user