diff options
author | Erik Johnston <erik@matrix.org> | 2016-12-07 09:58:33 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-12-07 09:58:33 +0000 |
commit | 2687af82d4b63fbdc7597a46e0cec297cc660a51 (patch) | |
tree | 526d7851228b2249e17688eb588b972c80f59403 /synapse/handlers/room_list.py | |
parent | Don't include appservice id (diff) | |
download | synapse-2687af82d4b63fbdc7597a46e0cec297cc660a51.tar.xz |
Comments
Diffstat (limited to 'synapse/handlers/room_list.py')
-rw-r--r-- | synapse/handlers/room_list.py | 3 |
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, ) |