Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Matrix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Operate
Environments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Matrix
Commits
35129ac9
Commit
35129ac9
authored
8 years ago
by
Erik Johnston
Committed by
GitHub
8 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #1698 from matrix-org/erikj/room_list
Fix caching on public room list
parents
ed02a001
9d95351c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
synapse/handlers/room_list.py
+4
-2
4 additions, 2 deletions
synapse/handlers/room_list.py
with
4 additions
and
2 deletions
synapse/handlers/room_list.py
+
4
−
2
View file @
35129ac9
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment