Filter room ids before hitting the database

This commit is contained in:
Erik Johnston 2015-10-21 10:09:26 +01:00
parent c8baada94a
commit 5c41224a89
2 changed files with 21 additions and 1 deletions

View file

@ -64,7 +64,7 @@ class SearchHandler(BaseHandler):
)
room_ids = set(r.room_id for r in rooms)
# TODO: Apply room filter to rooms list
room_ids = filtr.filter_rooms(room_ids)
rank_map, event_map = yield self.store.search_msgs(room_ids, search_term, keys)