mirror of
https://github.com/aljazceru/signal-cli.git
synced 2026-01-09 00:44:25 +01:00
Move saving out of synchronized block
This commit is contained in:
@@ -189,6 +189,7 @@ public class GroupStore {
|
||||
}
|
||||
|
||||
public void mergeRecipients(final RecipientId recipientId, final RecipientId toBeMergedRecipientId) {
|
||||
Storage storage = null;
|
||||
synchronized (groups) {
|
||||
var modified = false;
|
||||
for (var group : this.groups.values()) {
|
||||
@@ -201,9 +202,12 @@ public class GroupStore {
|
||||
}
|
||||
}
|
||||
if (modified) {
|
||||
saver.save(toStorageLocked());
|
||||
storage = toStorageLocked();
|
||||
}
|
||||
}
|
||||
if (storage != null) {
|
||||
saver.save(storage);
|
||||
}
|
||||
}
|
||||
|
||||
private GroupInfo getGroupLocked(final GroupId groupId) {
|
||||
|
||||
Reference in New Issue
Block a user