summary refs log tree commit diff
path: root/synapse/handlers/device.py
diff options
context:
space:
mode:
authorErik Johnston <erikj@jki.re>2017-01-30 17:56:19 +0000
committerGitHub <noreply@github.com>2017-01-30 17:56:19 +0000
commit4c9812f5da8ad854e9ec59fc4dfcadecdda70436 (patch)
treee7daec9cf524079f4c8da6031efb1358168bd20d /synapse/handlers/device.py
parentMerge pull request #1857 from matrix-org/erikj/device_list_stream (diff)
parentDon't have such a large cache (diff)
downloadsynapse-4c9812f5da8ad854e9ec59fc4dfcadecdda70436.tar.xz
Merge pull request #1861 from matrix-org/erikj/device_list_fixes
Device List fixes
Diffstat (limited to 'synapse/handlers/device.py')
-rw-r--r--synapse/handlers/device.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/device.py b/synapse/handlers/device.py
index 6fefb85890..7245d14fab 100644
--- a/synapse/handlers/device.py
+++ b/synapse/handlers/device.py
@@ -203,7 +203,7 @@ class DeviceHandler(BaseHandler):
         hosts = set()
         if self.hs.is_mine_id(user_id):
             for room_id in room_ids:
-                users = yield self.state.get_current_user_in_room(room_id)
+                users = yield self.store.get_users_in_room(room_id)
                 hosts.update(get_domain_from_id(u) for u in users)
             hosts.discard(self.server_name)