Skip to content
Snippets Groups Projects
Commit 66d36b8e authored by Erik Johnston's avatar Erik Johnston
Browse files

Be explicit about what we're doing

parent 2aa98ff3
No related branches found
No related tags found
No related merge requests found
...@@ -121,7 +121,7 @@ class SearchHandler(BaseHandler): ...@@ -121,7 +121,7 @@ class SearchHandler(BaseHandler):
room_ids = search_filter.filter_rooms(room_ids) room_ids = search_filter.filter_rooms(room_ids)
if batch_group == "room_id": if batch_group == "room_id":
room_ids = room_ids & {batch_group_key} room_ids.intersection_update({batch_group_key})
rank_map = {} # event_id -> rank of event rank_map = {} # event_id -> rank of event
allowed_events = [] allowed_events = []
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment