mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-12-24 14:32:37 +01:00
fix: Fluffychat sometimes forgetting that a client is logged in
This commit is contained in:
parent
396a433cae
commit
b015604faf
@ -30,7 +30,10 @@ abstract class ClientManager {
|
||||
Logs().w('Client names in store are corrupted', e, s);
|
||||
await Store().deleteItem(clientNamespace);
|
||||
}
|
||||
if (clientNames.isEmpty) clientNames.add(PlatformInfos.clientName);
|
||||
if (clientNames.isEmpty) {
|
||||
clientNames.add(PlatformInfos.clientName);
|
||||
await Store().setItem(clientNamespace, jsonEncode(clientNames.toList()));
|
||||
}
|
||||
final clients = clientNames.map(createClient).toList();
|
||||
await Future.wait(clients.map((client) => client
|
||||
.init(waitForFirstSync: false)
|
||||
|
Loading…
Reference in New Issue
Block a user