1 files changed, 7 insertions, 7 deletions
diff --git a/synapse/storage/search.py b/synapse/storage/search.py
index e66b5f9edc..238df38440 100644
--- a/synapse/storage/search.py
+++ b/synapse/storage/search.py
@@ -70,11 +70,11 @@ class SearchStore(SQLBaseStore):
for ev in events
}
- defer.returnValue([
+ defer.returnValue((
{
- "rank": r["rank"],
- "result": event_map[r["event_id"]]
- }
- for r in results
- if r["event_id"] in event_map
- ])
+ r["event_id"]: r["rank"]
+ for r in results
+ if r["event_id"] in event_map
+ },
+ event_map
+ ))
|