summary refs log tree commit diff
path: root/synapse/handlers/room_list.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2016-12-07 09:58:33 +0000
committerErik Johnston <erik@matrix.org>2016-12-07 09:58:33 +0000
commit2687af82d4b63fbdc7597a46e0cec297cc660a51 (patch)
tree526d7851228b2249e17688eb588b972c80f59403 /synapse/handlers/room_list.py
parentDon't include appservice id (diff)
downloadsynapse-2687af82d4b63fbdc7597a46e0cec297cc660a51.tar.xz
Comments
Diffstat (limited to 'synapse/handlers/room_list.py')
-rw-r--r--synapse/handlers/room_list.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/handlers/room_list.py b/synapse/handlers/room_list.py
index 712e5641d5..1e883b23f6 100644
--- a/synapse/handlers/room_list.py
+++ b/synapse/handlers/room_list.py
@@ -63,7 +63,8 @@ class RoomListHandler(BaseHandler):
                 Setting to None returns all public rooms across all lists.
         """
         if search_filter or network_tuple is not (None, None):
-            # We explicitly don't bother caching searches.
+            # We explicitly don't bother caching searches or requests for
+            # appservice specific lists.
             return self._get_public_room_list(
                 limit, since_token, search_filter, network_tuple=network_tuple,
             )