Compare commits

...

2 Commits

Author SHA1 Message Date
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 8 additions and 7 deletions

View File

@@ -34,14 +34,14 @@ ktlint {
}
def canonicalVersionCode = 1355
def canonicalVersionName = "6.39.1"
def canonicalVersionName = "6.39.2"
def postFixSize = 100
def abiPostFix = ['universal' : 0,
'armeabi-v7a' : 1,
'arm64-v8a' : 2,
'x86' : 3,
'x86_64' : 4]
def abiPostFix = ['universal' : 5,
'armeabi-v7a' : 6,
'arm64-v8a' : 7,
'x86' : 8,
'x86_64' : 9]
def keystores = [ 'debug' : loadKeystoreProperties('keystore.debug.properties') ]

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());
}
}