Fix offline mode and local DB initialization

This commit is contained in:
2020-06-07 16:26:54 +02:00
parent cb395c808c
commit 2409c5b2f7
4 changed files with 18 additions and 18 deletions

View File

@@ -223,6 +223,7 @@ public class Client implements Closeable {
checkOnline();
Map<String, Contact> users = new HashMap<>();
contacts.forEach(u -> users.put(u.getName(), u));
users.put(sender.getName(), sender);
return users;
}