0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-10-03 15:09:12 +02:00

We return dicts now.

This commit is contained in:
Erik Johnston 2016-02-03 16:29:32 +00:00
parent b84d59c5f0
commit aa4af94c69

View file

@ -72,7 +72,7 @@ class EventPushActionsStore(SQLBaseStore):
)
results = txn.fetchall()
if len(results) == 0:
return []
return {}
stream_ordering = results[0][0]
topological_ordering = results[0][1]