summary refs log tree commit diff
path: root/synapse/handlers
diff options
context:
space:
mode:
authorErik Johnston <erikj@jki.re>2017-03-24 13:07:22 +0000
committerGitHub <noreply@github.com>2017-03-24 13:07:22 +0000
commit23e0ff840af810417cbd8855b92ab0794c25eaf8 (patch)
treeb2b2bc5a3adec8dadd2f2730532868912e064ef4 /synapse/handlers
parentMerge pull request #2058 from matrix-org/rav/logcontext_leaks_2 (diff)
parentCache hosts in room (diff)
downloadsynapse-23e0ff840af810417cbd8855b92ab0794c25eaf8.tar.xz
Merge pull request #2060 from matrix-org/erikj/cache_hosts_in_room
Cache hosts in room
Diffstat (limited to 'synapse/handlers')
-rw-r--r--synapse/handlers/presence.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/synapse/handlers/presence.py b/synapse/handlers/presence.py
index 059260a8aa..1ede117c79 100644
--- a/synapse/handlers/presence.py
+++ b/synapse/handlers/presence.py
@@ -575,8 +575,7 @@ class PresenceHandler(object):
                 if not local_states:
                     continue
 
-                users = yield self.store.get_users_in_room(room_id)
-                hosts = set(get_domain_from_id(u) for u in users)
+                hosts = yield self.store.get_hosts_in_room(room_id)
 
                 for host in hosts:
                     hosts_to_states.setdefault(host, []).extend(local_states)