mirror of
https://github.com/aljazceru/signal-cli.git
synced 2026-01-01 05:14:23 +01:00
Improve internal group handling for receiving
This commit is contained in:
@@ -25,11 +25,8 @@ public class JsonGroupStore {
|
||||
groups.put(Base64.encodeBytes(group.groupId), group);
|
||||
}
|
||||
|
||||
GroupInfo getGroup(byte[] groupId) throws GroupNotFoundException {
|
||||
GroupInfo getGroup(byte[] groupId) {
|
||||
GroupInfo g = groups.get(Base64.encodeBytes(groupId));
|
||||
if (g == null) {
|
||||
throw new GroupNotFoundException(groupId);
|
||||
}
|
||||
return g;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user