mirror of
https://github.com/AsamK/signal-cli.git
synced 2026-09-01 06:28:11 +00:00
parent
cbd92654cf
commit
7a25ae5b9c
@ -267,8 +267,12 @@ public class ContactRecordProcessor extends DefaultStorageRecordProcessor<Signal
|
||||
.withGivenName(nullIfEmpty(contactProto.systemGivenName))
|
||||
.withFamilyName(nullIfEmpty(contactProto.systemFamilyName))
|
||||
.withNickName(nullIfEmpty(contactProto.systemNickname))
|
||||
.withNickNameGivenName(nullIfEmpty(contactProto.givenName))
|
||||
.withNickNameFamilyName(nullIfEmpty(contactProto.familyName))
|
||||
.withNickNameGivenName(nullIfEmpty(contactProto.nickname == null
|
||||
? null
|
||||
: contactProto.nickname.given))
|
||||
.withNickNameFamilyName(nullIfEmpty(contactProto.nickname == null
|
||||
? null
|
||||
: contactProto.nickname.family))
|
||||
.withNote(nullIfEmpty(contactProto.note))
|
||||
.withUnregisteredTimestamp(contactProto.unregisteredAtTimestamp == 0
|
||||
? null
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user