summary refs log tree commit diff
path: root/synapse/api/streams/event.py
diff options
context:
space:
mode:
Diffstat (limited to 'synapse/api/streams/event.py')
-rw-r--r--synapse/api/streams/event.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/api/streams/event.py b/synapse/api/streams/event.py

index 427363cad4..895a96b5b9 100644 --- a/synapse/api/streams/event.py +++ b/synapse/api/streams/event.py
@@ -160,7 +160,7 @@ class EventStream(PaginationStream): self.user_id, from_pkey, to_pkey, limit ) - chunk += event_chunk + chunk += [e.get_dict() for e in event_chunk] next_ver.append(str(max_pkey)) defer.returnValue((chunk, EventStream.SEPARATOR.join(next_ver)))