diff options
author | Erik Johnston <erik@matrix.org> | 2016-09-15 09:27:47 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-09-15 09:28:15 +0100 |
commit | 413138112379594bf9290576d44c365af612817d (patch) | |
tree | 6a4a03cab7f78e4a797edf10cb5e4298e6e93493 /synapse/rest | |
parent | Accept optional token to public room list (diff) | |
download | synapse-413138112379594bf9290576d44c365af612817d.tar.xz |
Remove support for aggregate room lists
Diffstat (limited to 'synapse/rest')
-rw-r--r-- | synapse/rest/client/v1/room.py | 2 |
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)) |