mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-28 18:10:38 +00:00
parent
d982633215
commit
bd95373a70
1 changed files with 3 additions and 1 deletions
|
@ -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());
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue