summary refs log tree commit diff
path: root/synapse/storage
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2017-08-21 14:45:56 +0100
committerErik Johnston <erik@matrix.org>2017-08-21 14:45:56 +0100
commit175a01f56c86a4c201e72d49f22663425656d81d (patch)
treedaa58e639f8ad3c5fa1c9c6567666ec14a832b28 /synapse/storage
parentRemove stale TODO comments (diff)
downloadsynapse-175a01f56c86a4c201e72d49f22663425656d81d.tar.xz
Groups: Fix mising json.load in initial sync
Diffstat (limited to 'synapse/storage')
-rw-r--r--synapse/storage/group_server.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/synapse/storage/group_server.py b/synapse/storage/group_server.py
index f44e80b514..792a57deb5 100644
--- a/synapse/storage/group_server.py
+++ b/synapse/storage/group_server.py
@@ -1101,7 +1101,13 @@ class GroupServerStore(SQLBaseStore):
                 LIMIT ?
             """
             txn.execute(sql, (from_token, to_token, limit,))
-            return txn.fetchall()
+            return [{
+                "stream_id": stream_id,
+                "group_id": group_id,
+                "user_id": user_id,
+                "type": gtype,
+                "content": json.loads(content_json),
+            } for stream_id, group_id, user_id, gtype, content_json in txn]
         return self.runInteraction(
             "get_all_groups_changes", _get_all_groups_changes_txn,
         )