mirror of
https://github.com/element-hq/synapse.git
synced 2024-11-22 01:25:44 +03:00
Fix bug when generating a key when get_room_events_stream returned zero rows
This commit is contained in:
parent
86be66c34e
commit
cd2967d271
1 changed files with 7 additions and 3 deletions
|
@ -89,10 +89,14 @@ class StreamStore(SQLBaseStore):
|
||||||
|
|
||||||
ret = [self._parse_event_from_row(r) for r in rows]
|
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:
|
else:
|
||||||
key = min([r["ordering"] for r in rows])
|
key = to_key
|
||||||
|
|
||||||
defer.returnValue((ret, key))
|
defer.returnValue((ret, key))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue