mirror of
https://github.com/element-hq/synapse.git
synced 2025-03-09 09:26:50 +00:00
Increment by one, not five
This commit is contained in:
parent
1ad6222ebf
commit
5ee070d21f
1 changed files with 1 additions and 1 deletions
|
@ -178,7 +178,7 @@ class SearchHandler(BaseHandler):
|
||||||
# or we run out of things.
|
# or we run out of things.
|
||||||
# But only go around 5 times since otherwise synapse will be sad.
|
# But only go around 5 times since otherwise synapse will be sad.
|
||||||
while len(room_events) < search_filter.limit() and i < 5:
|
while len(room_events) < search_filter.limit() and i < 5:
|
||||||
i += 5
|
i += 1
|
||||||
results = yield self.store.search_room(
|
results = yield self.store.search_room(
|
||||||
room_id, search_term, keys, search_filter.limit() * 2,
|
room_id, search_term, keys, search_filter.limit() * 2,
|
||||||
pagination_token=pagination_token,
|
pagination_token=pagination_token,
|
||||||
|
|
Loading…
Add table
Reference in a new issue