summary refs log tree commit diff
path: root/synapse/federation
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2019-02-27 10:29:24 +0000
committerRichard van der Hoff <richard@matrix.org>2019-02-27 10:29:24 +0000
commit67acd1aa1b931291a011b95488a1fb059fc8f644 (patch)
tree77b543bc3b83c79313e75fdd593f493810f9c6a6 /synapse/federation
parentMerge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixes (diff)
parentLimit cache invalidation replication line length (#4748) (diff)
downloadsynapse-67acd1aa1b931291a011b95488a1fb059fc8f644.tar.xz
Merge branch 'develop' into matrix-org-hotfixes
Diffstat (limited to 'synapse/federation')
-rw-r--r--synapse/federation/transport/server.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/federation/transport/server.py b/synapse/federation/transport/server.py

index a2396ab466..5ba94be2ec 100644 --- a/synapse/federation/transport/server.py +++ b/synapse/federation/transport/server.py
@@ -736,7 +736,8 @@ class PublicRoomList(BaseFederationServlet): data = yield self.handler.get_local_public_room_list( limit, since_token, - network_tuple=network_tuple + network_tuple=network_tuple, + from_federation=True, ) defer.returnValue((200, data))