mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Fix default for send_server_notice_to_guests
bool("False") == True...
This commit is contained in:
parent
ba1b163590
commit
66bdae986f
@ -78,7 +78,7 @@ class ConsentConfig(Config):
|
||||
"block_events_error",
|
||||
)
|
||||
self.user_consent_server_notice_to_guests = bool(consent_config.get(
|
||||
"send_server_notice_to_guests", "False"
|
||||
"send_server_notice_to_guests", False,
|
||||
))
|
||||
|
||||
def default_config(self, **kwargs):
|
||||
|
Loading…
Reference in New Issue
Block a user