0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-11-17 15:31:19 +01: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() results = txn.fetchall()
if len(results) == 0: if len(results) == 0:
return {} return {"notify_count": 0, "highlight_count": 0}
stream_ordering = results[0][0] stream_ordering = results[0][0]
topological_ordering = results[0][1] topological_ordering = results[0][1]