mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2025-01-12 02:09:26 -05:00
Add comment
This commit is contained in:
parent
af2fe6110c
commit
8a88684736
@ -184,6 +184,9 @@ class StreamStore(SQLBaseStore):
|
|||||||
@defer.inlineCallbacks
|
@defer.inlineCallbacks
|
||||||
def get_room_events_stream_for_room(self, room_id, from_key, to_key, limit=0,
|
def get_room_events_stream_for_room(self, room_id, from_key, to_key, limit=0,
|
||||||
order='DESC'):
|
order='DESC'):
|
||||||
|
# Note: If from_key is None then we return in topological order. This
|
||||||
|
# is because in that case we're using this as a "get the last few messages
|
||||||
|
# in a room" function, rather than "get new messages since last sync"
|
||||||
if from_key is not None:
|
if from_key is not None:
|
||||||
from_id = RoomStreamToken.parse_stream_token(from_key).stream
|
from_id = RoomStreamToken.parse_stream_token(from_key).stream
|
||||||
else:
|
else:
|
||||||
|
Loading…
Reference in New Issue
Block a user