Update lib/src/Store.dart

This commit is contained in:
Christian 2019-06-12 07:52:31 +00:00
parent 19c6c3a37d
commit 60cf1ac7fe
1 changed files with 1 additions and 1 deletions

View File

@ -417,7 +417,7 @@ class Store {
[client.userID]);
List<User> userList = [];
for (int i = 0; i < res.length; i++)
userList.add(User.fromJson(res[i], client));
userList.add(User.fromJson(res[i], Room(id: "", client: client)));
return userList;
}