mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Respect 'limit' param in initialSync api
This commit is contained in:
parent
d0103400b5
commit
9a93e83d90
@ -270,6 +270,10 @@ class MessageHandler(BaseHandler):
|
||||
# FIXME (erikj): We need to not generate this token,
|
||||
now_token = "%s_%s" % (now_rooms_token, now_presence_token)
|
||||
|
||||
limit = pagin_config.limit
|
||||
if not limit:
|
||||
limit = 10
|
||||
|
||||
for event in room_list:
|
||||
d = {
|
||||
"room_id": event.room_id,
|
||||
@ -286,7 +290,7 @@ class MessageHandler(BaseHandler):
|
||||
try:
|
||||
messages, token = yield self.store.get_recent_events_for_room(
|
||||
event.room_id,
|
||||
limit=10,
|
||||
limit=limit,
|
||||
end_token=now_rooms_token,
|
||||
)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user