Skip to content
Snippets Groups Projects
Commit 35129ac9 authored by Erik Johnston's avatar Erik Johnston Committed by GitHub
Browse files

Merge pull request #1698 from matrix-org/erikj/room_list

Fix caching on public room list
parents ed02a001 9d95351c
No related branches found
No related tags found
No related merge requests found
......@@ -62,7 +62,7 @@ class RoomListHandler(BaseHandler):
appservice and network id to use an appservice specific one.
Setting to None returns all public rooms across all lists.
"""
if search_filter or network_tuple is not (None, None):
if search_filter or (network_tuple and network_tuple.appservice_id is not None):
# We explicitly don't bother caching searches or requests for
# appservice specific lists.
return self._get_public_room_list(
......@@ -73,7 +73,9 @@ class RoomListHandler(BaseHandler):
if not result:
result = self.response_cache.set(
(limit, since_token),
self._get_public_room_list(limit, since_token)
self._get_public_room_list(
limit, since_token, network_tuple=network_tuple
)
)
return result
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment