forked from MirrorHub/synapse
Fix empty account_validity config block (#6747)
This commit is contained in:
commit
e9e066055f
2 changed files with 3 additions and 1 deletions
1
changelog.d/6747.bugfix
Normal file
1
changelog.d/6747.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Fix bug when setting `account_validity` to an empty block in the config. Thanks to @Sorunome for reporting.
|
|
@ -29,6 +29,7 @@ class AccountValidityConfig(Config):
|
|||
def __init__(self, config, synapse_config):
|
||||
if config is None:
|
||||
return
|
||||
super(AccountValidityConfig, self).__init__()
|
||||
self.enabled = config.get("enabled", False)
|
||||
self.renew_by_email_enabled = "renew_at" in config
|
||||
|
||||
|
@ -93,7 +94,7 @@ class RegistrationConfig(Config):
|
|||
)
|
||||
|
||||
self.account_validity = AccountValidityConfig(
|
||||
config.get("account_validity", {}), config
|
||||
config.get("account_validity") or {}, config
|
||||
)
|
||||
|
||||
self.registrations_require_3pid = config.get("registrations_require_3pid", [])
|
||||
|
|
Loading…
Reference in a new issue