summary refs log tree commit diff
path: root/synapse/handlers
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2015-04-30 10:16:12 +0100
committerErik Johnston <erik@matrix.org>2015-04-30 10:16:12 +0100
commit1d7702833d27f2e87e6598b5de9aad878e716c4b (patch)
treef38bd329f3b2043353f105f3adcd2652c945c7ce /synapse/handlers
parentCorrectly decode, for sqlite and postgres, rows from pushers table (diff)
downloadsynapse-1d7702833d27f2e87e6598b5de9aad878e716c4b.tar.xz
Make simple query rather than long one and then throw away half the results
Diffstat (limited to 'synapse/handlers')
-rw-r--r--synapse/handlers/message.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/synapse/handlers/message.py b/synapse/handlers/message.py
index 9667bb8674..22e19af17f 100644
--- a/synapse/handlers/message.py
+++ b/synapse/handlers/message.py
@@ -267,8 +267,7 @@ class MessageHandler(BaseHandler):
             user, pagination_config.get_source_config("presence"), None
         )
 
-        public_rooms = yield self.store.get_rooms(is_public=True)
-        public_room_ids = [r["room_id"] for r in public_rooms]
+        public_room_ids = yield self.store.get_public_room_ids()
 
         limit = pagin_config.limit
         if limit is None: