diff options
author | Erik Johnston <erik@matrix.org> | 2014-09-03 16:04:21 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-09-03 16:04:27 +0100 |
commit | 30bcbc433a4d59ddd0e8c3a268c9d3ce668c74c2 (patch) | |
tree | ced5e38adc9600ffe25cf2f9c57de40867f11f38 /synapse/rest | |
parent | List commands and their usage in the settings page (diff) | |
download | synapse-30bcbc433a4d59ddd0e8c3a268c9d3ce668c74c2.tar.xz |
Fix up directory server to not require uploading room hosts. Update the room hosts table with the current room hosts (if we have them) on GET.
Diffstat (limited to 'synapse/rest')
-rw-r--r-- | synapse/rest/directory.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/rest/directory.py b/synapse/rest/directory.py index dc347652a0..29ace4f1d3 100644 --- a/synapse/rest/directory.py +++ b/synapse/rest/directory.py @@ -54,7 +54,7 @@ class ClientDirectoryServer(RestServlet): logger.debug("Got room name: %s", room_alias.to_string()) room_id = content["room_id"] - servers = content["servers"] + servers = content["servers"] if "servers" in content else None logger.debug("Got room_id: %s", room_id) logger.debug("Got servers: %s", servers) |