diff options
author | Patrick Cloke <patrickc@matrix.org> | 2021-02-11 11:56:03 -0500 |
---|---|---|
committer | Patrick Cloke <patrickc@matrix.org> | 2021-02-11 11:56:03 -0500 |
commit | 2c9b4a5f16b7950e7ebb2e5f445e7ae925e61113 (patch) | |
tree | 78e2159e896bb99e7585739c2ed2e4488447bda7 /synapse/handlers | |
parent | Ensure that we never stop reconnecting to redis (#9391) (diff) | |
parent | Clarify when new ratelimiting was added. (diff) | |
download | synapse-2c9b4a5f16b7950e7ebb2e5f445e7ae925e61113.tar.xz |
Merge tag 'v1.27.0rc2' into develop
Synapse 1.27.0rc2 (2021-02-11) ============================== Features -------- - Further improvements to the user experience of registration via single sign-on. ([\#9297](https://github.com/matrix-org/synapse/issues/9297)) Bugfixes -------- - Fix ratelimiting introduced in v1.27.0rc1 for invites to respect the `ratelimit` flag on application services. ([\#9302](https://github.com/matrix-org/synapse/issues/9302)) - Do not automatically calculate `public_baseurl` since it can be wrong in some situations. Reverts behaviour introduced in v1.26.0. ([\#9313](https://github.com/matrix-org/synapse/issues/9313)) Improved Documentation ---------------------- - Clarify the sample configuration for changes made to the template loading code. ([\#9310](https://github.com/matrix-org/synapse/issues/9310))
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) |