summary refs log tree commit diff
path: root/synapse/handlers/ui_auth
diff options
context:
space:
mode:
authorWill Hunt <will@half-shot.uk>2022-05-05 12:11:52 +0100
committerGitHub <noreply@github.com>2022-05-05 07:11:52 -0400
commitcc7656099d882735507c41ea6efcba961f53b7ec (patch)
treee2ccb4d284fc7d2e6d63ab05dcaff2ae43a4a889 /synapse/handlers/ui_auth
parentReduce log spam when running multiple event persisters (#12610) (diff)
downloadsynapse-cc7656099d882735507c41ea6efcba961f53b7ec.tar.xz
Fix typo in some instances of enable_registration_token_3pid_bypass. (#12639)
Diffstat (limited to 'synapse/handlers/ui_auth')
-rw-r--r--synapse/handlers/ui_auth/checkers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/ui_auth/checkers.py b/synapse/handlers/ui_auth/checkers.py
index e2a441066d..05cebb5d4d 100644
--- a/synapse/handlers/ui_auth/checkers.py
+++ b/synapse/handlers/ui_auth/checkers.py
@@ -258,7 +258,7 @@ class RegistrationTokenAuthChecker(UserInteractiveAuthChecker):
         self.hs = hs
         self._enabled = bool(
             hs.config.registration.registration_requires_token
-        ) or bool(hs.config.registration.enable_registration_token_3pid_bypasss)
+        ) or bool(hs.config.registration.enable_registration_token_3pid_bypass)
         self.store = hs.get_datastores().main
 
     def is_enabled(self) -> bool: