mirror of
https://github.com/oxen-io/session-android.git
synced 2025-12-15 20:42:00 +00:00
GroupsV2 update sending and local context storage.
This commit is contained in:
committed by
Greyson Parrelli
parent
f5e6fd6340
commit
78055e3ccb
@@ -39,6 +39,16 @@ public final class DecryptedGroupUtil {
|
||||
return uuidList;
|
||||
}
|
||||
|
||||
public static ArrayList<UUID> membersToUuidList(Collection<DecryptedMember> membersList) {
|
||||
ArrayList<UUID> uuidList = new ArrayList<>(membersList.size());
|
||||
|
||||
for (DecryptedMember member : membersList) {
|
||||
uuidList.add(toUuid(member));
|
||||
}
|
||||
|
||||
return uuidList;
|
||||
}
|
||||
|
||||
public static ArrayList<UUID> pendingToUuidList(Collection<DecryptedPendingMember> membersList) {
|
||||
ArrayList<UUID> uuidList = new ArrayList<>(membersList.size());
|
||||
|
||||
|
||||
Reference in New Issue
Block a user