diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2020-05-13 14:26:44 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-13 14:26:44 -0400 |
commit | 5d64fefd6c7790dac0209c6c32cdb97cd6cd8820 (patch) | |
tree | 283f93e92ca94cb9c43b28c6138ae60b38832cbc /synapse/rest | |
parent | Fix new flake8 errors (#7489) (diff) | |
download | synapse-5d64fefd6c7790dac0209c6c32cdb97cd6cd8820.tar.xz |
Do not validate that the client dict is stable during UI Auth. (#7483)
This backs out some of the validation for the client dictionary and logs if this changes during a user interactive authentication session instead.
Diffstat (limited to 'synapse/rest')
-rw-r--r-- | synapse/rest/client/v2_alpha/register.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/synapse/rest/client/v2_alpha/register.py b/synapse/rest/client/v2_alpha/register.py index e77dd6bf92..af08cc6cce 100644 --- a/synapse/rest/client/v2_alpha/register.py +++ b/synapse/rest/client/v2_alpha/register.py @@ -516,7 +516,6 @@ class RegisterRestServlet(RestServlet): body, self.hs.get_ip_from_request(request), "register a new account", - validate_clientdict=False, ) # Check that we're not trying to register a denied 3pid. |