diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2021-02-11 11:16:54 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-11 11:16:54 -0500 |
commit | e40d88cff3cca3d5186d5f623ad1107bc403d69b (patch) | |
tree | 1bb8e1daa3f43099f535eb56dacd472edb78795e /synapse/handlers | |
parent | Clarify documentation about escaping URLs in templates. (#9310) (diff) | |
download | synapse-e40d88cff3cca3d5186d5f623ad1107bc403d69b.tar.xz |
Backout changes for automatically calculating the public baseurl. (#9313)
This breaks some people's configurations (if their Client-Server API is not accessed via port 443).
Diffstat (limited to 'synapse/handlers')
-rw-r--r-- | synapse/handlers/identity.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/synapse/handlers/identity.py b/synapse/handlers/identity.py index 4f7137539b..8fc1e8b91c 100644 --- a/synapse/handlers/identity.py +++ b/synapse/handlers/identity.py @@ -504,6 +504,10 @@ class IdentityHandler(BaseHandler): except RequestTimedOutError: raise SynapseError(500, "Timed out contacting identity server") + # It is already checked that public_baseurl is configured since this code + # should only be used if account_threepid_delegate_msisdn is true. + assert self.hs.config.public_baseurl + # we need to tell the client to send the token back to us, since it doesn't # otherwise know where to send it, so add submit_url response parameter # (see also MSC2078) |