summaryrefslogtreecommitdiff
path: root/synapse/handlers/auth.py
diff options
context:
space:
mode:
authorAndrej Shadura <andrewsh@debian.org>2022-08-31 13:20:09 +0200
committerAndrej Shadura <andrewsh@debian.org>2022-08-31 13:20:09 +0200
commita8b88be80e7adebc44ddb792a812407e2656ef56 (patch)
tree831c8b750d493752320088ab17af61c45f0e22fb /synapse/handlers/auth.py
parent49d06467a57f968ea757e2797de7cb40fa8908cc (diff)
New upstream version 1.65.0
Diffstat (limited to 'synapse/handlers/auth.py')
-rw-r--r--synapse/handlers/auth.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/auth.py b/synapse/handlers/auth.py
index 3d83236b..bfa55350 100644
--- a/synapse/handlers/auth.py
+++ b/synapse/handlers/auth.py
@@ -565,7 +565,7 @@ class AuthHandler:
except LoginError as e:
# this step failed. Merge the error dict into the response
# so that the client can have another go.
- errordict = e.error_dict()
+ errordict = e.error_dict(self.hs.config)
creds = await self.store.get_completed_ui_auth_stages(session.session_id)
for f in flows: