0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-09-07 02:17:00 +02:00

Make search API honour limit set in filter

This commit is contained in:
Erik Johnston 2015-10-29 16:17:47 +00:00
parent 5d80dad99e
commit f6e6f3d87a

View file

@ -87,6 +87,9 @@ class SearchHandler(BaseHandler):
user.to_string(), filtered_events
)
allowed_events.sort(key=lambda e: -rank_map[e.event_id])
allowed_events = allowed_events[:search_filter.limit()]
if event_context is not None:
now_token = yield self.hs.get_event_sources().get_current_token()