Recreate recipient database with aci column

This commit is contained in:
AsamK 2024-01-28 17:57:40 +01:00
parent 90df256e85
commit 76fe6ad799
17 changed files with 375 additions and 239 deletions

View file

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