Store profile sharing enabled for contacts

Automatically enable it when sending direct messages
This commit is contained in:
AsamK 2022-05-18 15:26:34 +02:00
parent 06a9884e99
commit b1e56faab2
7 changed files with 71 additions and 21 deletions

View file

@ -554,7 +554,7 @@ public class DbusManagerImpl implements Manager {
return null;
}
return new Pair<>(new RecipientAddress(null, n),
new Contact(contactName, null, 0, signal.isContactBlocked(n), false));
new Contact(contactName, null, 0, signal.isContactBlocked(n), false, false));
}).filter(Objects::nonNull).toList();
}