Merge pull request #4047 from matrix-org/michaelkaye/dinsic_allow_user_directory_url

user_directory.defer_to_id_server should be an URL, not a hostname
This commit is contained in:
Michael Kaye 2018-11-02 12:00:18 +00:00 committed by GitHub
commit 41585e1340
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -49,5 +49,5 @@ class UserDirectoryConfig(Config):
# If this is set, user search will be delegated to this ID server instead
# of synapse performing the search itself.
# This is an experimental API.
# defer_to_id_server: id.example.com
# defer_to_id_server: https://id.example.com
"""

View File

@ -66,7 +66,7 @@ class UserDirectorySearchRestServlet(RestServlet):
if self.hs.config.user_directory_defer_to_id_server:
signed_body = sign_json(body, self.hs.hostname, self.hs.config.signing_key[0])
url = "http://%s/_matrix/identity/api/v1/user_directory/search" % (
url = "%s/_matrix/identity/api/v1/user_directory/search" % (
self.hs.config.user_directory_defer_to_id_server,
)
resp = yield self.http_client.post_json_get_json(url, signed_body)