Split contact name field in given name and family name

This commit is contained in:
AsamK 2022-05-23 16:42:38 +02:00
parent 69e952738b
commit 5b1c6c0d64
7 changed files with 58 additions and 16 deletions

View file

@ -574,7 +574,7 @@ public class DbusManagerImpl implements Manager {
}
return Recipient.newBuilder()
.withAddress(new RecipientAddress(null, n))
.withContact(new Contact(contactName, null, 0, contactBlocked, false, false))
.withContact(new Contact(contactName, null, null, 0, contactBlocked, false, false))
.build();
}).filter(Objects::nonNull).toList();
}