Fix initial sync

pull/2471/head
Erik Johnston 2017-09-20 10:52:12 +01:00
parent 47d9848dc4
commit 069ae2df12
1 changed files with 9 additions and 1 deletions

View File

@ -1085,7 +1085,15 @@ class GroupServerStore(SQLBaseStore):
AND stream_id <= ?
"""
txn.execute(sql, (user_id, now_token,))
return self.cursor_to_dict(txn)
return [
{
"group_id": row[0],
"type": row[1],
"membership": row[2],
"content": json.loads(row[3]),
}
for row in txn
]
return self.runInteraction(
"get_all_groups_for_user", _get_all_groups_for_user_txn,
)