summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
Diffstat (limited to 'synapse')
-rw-r--r--synapse/handlers/sync.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/sync.py b/synapse/handlers/sync.py

index 4e63d9f767..0fe17950b3 100644 --- a/synapse/handlers/sync.py +++ b/synapse/handlers/sync.py
@@ -545,7 +545,7 @@ class SyncHandler(object): ) # this is heavily cached, thus: fast. - details = yield self.get_room_summary(room_id) + details = yield self.store.get_room_summary(room_id) name_id = state_ids.get((EventTypes.Name, '')) canonical_alias_id = state_ids.get((EventTypes.CanonicalAlias, ''))