Skip to content

Commit

Permalink
Fix empty nickname note syncing.
Browse files Browse the repository at this point in the history
  • Loading branch information
greyson-signal committed Jan 23, 2025
1 parent 288d498 commit 0ab06ed
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 0ab06ed

Please sign in to comment.