From 60cf1ac7fe0e14c433f78a3a2a3da80fa7587070 Mon Sep 17 00:00:00 2001 From: Christian Date: Wed, 12 Jun 2019 07:52:31 +0000 Subject: [PATCH] Update lib/src/Store.dart --- lib/src/Store.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/Store.dart b/lib/src/Store.dart index 005599a..eff9787 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; }