diff options
author | Richard van der Hoff <richard@matrix.org> | 2019-06-22 00:00:20 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2019-06-24 14:14:52 +0100 |
commit | 16b52642e274054a070fb494684547a77790c22b (patch) | |
tree | df8d390407e6848473d38f3589d8ae4d5aa1a5a4 /synapse/config/server_notices_config.py | |
parent | Ensure that all config options have sensible defaults (diff) | |
download | synapse-16b52642e274054a070fb494684547a77790c22b.tar.xz |
Don't load the generated config as the default.
It's too confusing.
Diffstat (limited to 'synapse/config/server_notices_config.py')
-rw-r--r-- | synapse/config/server_notices_config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/config/server_notices_config.py b/synapse/config/server_notices_config.py index 05110c17a6..eaac3d73bc 100644 --- a/synapse/config/server_notices_config.py +++ b/synapse/config/server_notices_config.py @@ -78,5 +78,5 @@ class ServerNoticesConfig(Config): # todo: i18n self.server_notices_room_name = c.get("room_name", "Server Notices") - def default_config(self, **kwargs): + def generate_config_section(self, **kwargs): return DEFAULT_CONFIG |