Skip to content

Commit b8d8413

Browse files
committed
Fix creating builder from contact
Fixes #1678
1 parent 5e16123 commit b8d8413

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

lib/src/main/java/org/asamk/signal/manager/api/Contact.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,12 @@ public static Builder newBuilder(final Contact copy) {
4949
builder.givenName = copy.givenName();
5050
builder.familyName = copy.familyName();
5151
builder.nickName = copy.nickName();
52+
builder.nickNameGivenName = copy.nickNameGivenName();
53+
builder.nickNameFamilyName = copy.nickNameFamilyName();
54+
builder.note = copy.note();
5255
builder.color = copy.color();
5356
builder.messageExpirationTime = copy.messageExpirationTime();
57+
builder.messageExpirationTimeVersion = copy.messageExpirationTimeVersion();
5458
builder.muteUntil = copy.muteUntil();
5559
builder.hideStory = copy.hideStory();
5660
builder.isBlocked = copy.isBlocked();

0 commit comments

Comments
 (0)