summary refs log tree commit diff
path: root/synapse/rest/client/v1
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2016-09-15 09:27:47 +0100
committerErik Johnston <erik@matrix.org>2016-09-15 09:28:15 +0100
commit413138112379594bf9290576d44c365af612817d (patch)
tree6a4a03cab7f78e4a797edf10cb5e4298e6e93493 /synapse/rest/client/v1
parentAccept optional token to public room list (diff)
downloadsynapse-413138112379594bf9290576d44c365af612817d.tar.xz
Remove support for aggregate room lists
Diffstat (limited to 'synapse/rest/client/v1')
-rw-r--r--synapse/rest/client/v1/room.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/rest/client/v1/room.py b/synapse/rest/client/v1/room.py
index 22d6a7d31e..c40913c7d1 100644
--- a/synapse/rest/client/v1/room.py
+++ b/synapse/rest/client/v1/room.py
@@ -321,7 +321,7 @@ class PublicRoomListRestServlet(ClientV1RestServlet):
         if server:
             data = yield handler.get_remote_public_room_list(server)
         else:
-            data = yield handler.get_aggregated_public_room_list()
+            data = yield handler.get_local_public_room_list()
 
         defer.returnValue((200, data))