mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-12-26 02:09:21 -05:00
Fix bug when generating a key when get_room_events_stream returned zero rows
This commit is contained in:
parent
86be66c34e
commit
cd2967d271
@ -89,10 +89,14 @@ class StreamStore(SQLBaseStore):
|
||||
|
||||
ret = [self._parse_event_from_row(r) for r in rows]
|
||||
|
||||
if from_key < to_key:
|
||||
key = max([r["ordering"] for r in rows])
|
||||
|
||||
if rows:
|
||||
if from_key < to_key:
|
||||
key = max([r["ordering"] for r in rows])
|
||||
else:
|
||||
key = min([r["ordering"] for r in rows])
|
||||
else:
|
||||
key = min([r["ordering"] for r in rows])
|
||||
key = to_key
|
||||
|
||||
defer.returnValue((ret, key))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user