Update lib/src/Store.dart

This commit is contained in:
Christian 2019-06-12 07:50:52 +00:00
parent f530d09de3
commit 19c6c3a37d
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], null));
userList.add(User.fromJson(res[i], client));
return userList;
}