mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2025-05-31 15:24:19 -04:00
Fix buggy condition in account validity handler (#7074)
This commit is contained in:
parent
d8d91983bc
commit
beb19cf61a
2 changed files with 6 additions and 1 deletions
|
@ -44,7 +44,11 @@ class AccountValidityHandler(object):
|
|||
|
||||
self._account_validity = self.hs.config.account_validity
|
||||
|
||||
if self._account_validity.renew_by_email_enabled and load_jinja2_templates:
|
||||
if (
|
||||
self._account_validity.enabled
|
||||
and self._account_validity.renew_by_email_enabled
|
||||
and load_jinja2_templates
|
||||
):
|
||||
# Don't do email-specific configuration if renewal by email is disabled.
|
||||
try:
|
||||
app_name = self.hs.config.email_app_name
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue