Fix sending to groups with non sender key capable members
Regression in 0.13.5 Fixes #1568
This commit is contained in:
parent
6bdc9a4b16
commit
130cee9906
@ -532,7 +532,7 @@ public class SendHelper {
|
||||
final var recipientList = new ArrayList<>(recipientIds);
|
||||
for (final var recipientId : recipientList) {
|
||||
final var access = context.getUnidentifiedAccessHelper().getSealedSenderAccessFor(recipientId);
|
||||
if (access != null) {
|
||||
if (access == null) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user