Compare commits

...

3 Commits

Author SHA1 Message Date
Greyson Parrelli
1a2482c52d Bump version to 6.39.3 2023-11-11 12:37:37 -05:00
Greyson Parrelli
a715192844 Bump version to 6.39.2 2023-11-11 12:03:31 -05:00
Greyson Parrelli
7dc4661fb1 Fix shared group membership check. 2023-11-11 12:02:49 -05:00
2 changed files with 4 additions and 3 deletions

View File

@@ -33,8 +33,8 @@ ktlint {
version = "0.49.1"
}
def canonicalVersionCode = 1355
def canonicalVersionName = "6.39.1"
def canonicalVersionCode = 1360
def canonicalVersionName = "6.39.3"
def postFixSize = 100
def abiPostFix = ['universal' : 0,

View File

@@ -315,7 +315,8 @@ public class RecipientUtil {
GroupTable groupDatabase = SignalDatabase.groups();
return groupDatabase.getPushGroupsContainingMember(recipient.getId())
.stream()
.anyMatch(GroupRecord::isV2Group);
.filter(GroupRecord::isV2Group)
.anyMatch(group -> group.memberLevel(Recipient.self()).isInGroup());
}
}