diff options
author | Olivier Wilkinson (reivilibre) <olivier@librepush.net> | 2019-08-14 08:56:24 +0100 |
---|---|---|
committer | Olivier Wilkinson (reivilibre) <olivier@librepush.net> | 2019-08-14 08:56:24 +0100 |
commit | 703f9ff3c9e757caf4c17b2d34dd500f1ad99dd6 (patch) | |
tree | c1505d3d2e4dbce686e5617032db2df87182824a /synapse/handlers/search.py | |
parent | Newsfile (diff) | |
parent | 1.3.0rc1 (diff) | |
download | synapse-703f9ff3c9e757caf4c17b2d34dd500f1ad99dd6.tar.xz |
Merge branch 'develop' into rei/room_stats_separated
Diffstat (limited to 'synapse/handlers/search.py')
-rw-r--r-- | synapse/handlers/search.py | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/synapse/handlers/search.py b/synapse/handlers/search.py index ddc4430d03..cd5e90bacb 100644 --- a/synapse/handlers/search.py +++ b/synapse/handlers/search.py @@ -69,7 +69,7 @@ class SearchHandler(BaseHandler): # Scan through the old room for further predecessors room_id = predecessor["room_id"] - defer.returnValue(historical_room_ids) + return historical_room_ids @defer.inlineCallbacks def search(self, user, content, batch=None): @@ -186,13 +186,11 @@ class SearchHandler(BaseHandler): room_ids.intersection_update({batch_group_key}) if not room_ids: - defer.returnValue( - { - "search_categories": { - "room_events": {"results": [], "count": 0, "highlights": []} - } + return { + "search_categories": { + "room_events": {"results": [], "count": 0, "highlights": []} } - ) + } rank_map = {} # event_id -> rank of event allowed_events = [] @@ -455,4 +453,4 @@ class SearchHandler(BaseHandler): if global_next_batch: rooms_cat_res["next_batch"] = global_next_batch - defer.returnValue({"search_categories": {"room_events": rooms_cat_res}}) + return {"search_categories": {"room_events": rooms_cat_res}} |