summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthew Hodgson <matthew@matrix.org>2018-09-07 16:25:21 +0100
committerMatthew Hodgson <matthew@matrix.org>2018-09-07 16:25:21 +0100
commit0bbcd070d2a4c8660678b8658c5b0ff22b3ad117 (patch)
treec5472a5d96c2033d972e7d8e6c4afe4b8d63c6a9
parentfix state (diff)
downloadsynapse-0bbcd070d2a4c8660678b8658c5b0ff22b3ad117.tar.xz
typo
-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, ''))