diff options
author | Will Hunt <will@half-shot.uk> | 2022-05-05 12:11:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-05 07:11:52 -0400 |
commit | cc7656099d882735507c41ea6efcba961f53b7ec (patch) | |
tree | e2ccb4d284fc7d2e6d63ab05dcaff2ae43a4a889 /synapse/handlers | |
parent | Reduce log spam when running multiple event persisters (#12610) (diff) | |
download | synapse-cc7656099d882735507c41ea6efcba961f53b7ec.tar.xz |
Fix typo in some instances of enable_registration_token_3pid_bypass. (#12639)
Diffstat (limited to 'synapse/handlers')
-rw-r--r-- | synapse/handlers/ui_auth/checkers.py | 2 |
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: |