mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-02-27 21:24:42 +00:00
Fix empty nickname note syncing.
This commit is contained in:
@@ -230,7 +230,7 @@ class ContactRecordProcessor(
|
||||
systemNickname = remote.proto.systemNickname
|
||||
nickname = remote.proto.nickname
|
||||
pniSignatureVerified = remote.proto.pniSignatureVerified || local.proto.pniSignatureVerified
|
||||
note = remote.proto.note.nullIfBlank() ?: local.proto.note
|
||||
note = remote.proto.note.nullIfBlank() ?: ""
|
||||
}.build().toSignalContactRecord(StorageId.forContact(keyGenerator.generate()))
|
||||
|
||||
val matchesRemote = doParamsMatch(remote, merged)
|
||||
|
||||
Reference in New Issue
Block a user