mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-29 18:40:39 +00:00
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
1 changed files with 1 additions and 1 deletions
|
@ -532,7 +532,7 @@ public class SendHelper {
|
||||||
final var recipientList = new ArrayList<>(recipientIds);
|
final var recipientList = new ArrayList<>(recipientIds);
|
||||||
for (final var recipientId : recipientList) {
|
for (final var recipientId : recipientList) {
|
||||||
final var access = context.getUnidentifiedAccessHelper().getSealedSenderAccessFor(recipientId);
|
final var access = context.getUnidentifiedAccessHelper().getSealedSenderAccessFor(recipientId);
|
||||||
if (access != null) {
|
if (access == null) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue