Skip to content
Snippets Groups Projects
Commit 66bdae98 authored by Richard van der Hoff's avatar Richard van der Hoff
Browse files

Fix default for send_server_notice_to_guests

bool("False") == True...
parent ba1b1635
No related branches found
No related tags found
No related merge requests found
......@@ -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):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment