0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-09-29 21:19:06 +02:00

Actually return something sensible

This commit is contained in:
Erik Johnston 2016-02-03 16:35:00 +00:00
parent 709e09e1c3
commit 4d36e73230

View file

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