mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
Handle empty events table
This commit is contained in:
parent
d4503e25ed
commit
18d68bfee4
@ -293,6 +293,9 @@ class EventPushActionsStore(SQLBaseStore):
|
||||
txn.execute("SELECT MAX(stream_ordering) FROM events")
|
||||
max_stream_ordering = txn.fetchone()[0]
|
||||
|
||||
if max_stream_ordering is None:
|
||||
return 0
|
||||
|
||||
range_start = 0
|
||||
range_end = max_stream_ordering
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user