diff --git a/lib/src/Store.dart b/lib/src/Store.dart index 005599a4..eff97872 100644 --- a/lib/src/Store.dart +++ b/lib/src/Store.dart @@ -417,7 +417,7 @@ class Store { [client.userID]); List 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; }