Split given/family name in updateContact command

This commit is contained in:
AsamK 2022-05-29 22:21:24 +02:00
parent 27dbc671e0
commit badbb55ef2
7 changed files with 32 additions and 13 deletions

View file

@ -409,9 +409,9 @@ public class DbusManagerImpl implements Manager {
@Override
public void setContactName(
final RecipientIdentifier.Single recipient, final String name
final RecipientIdentifier.Single recipient, final String givenName, final String familyName
) throws NotPrimaryDeviceException {
signal.setContactName(recipient.getIdentifier(), name);
signal.setContactName(recipient.getIdentifier(), givenName);
}
@Override