diff options
author | Andrew Morgan <andrew@amorgan.xyz> | 2020-02-13 12:04:46 +0000 |
---|---|---|
committer | Andrew Morgan <andrew@amorgan.xyz> | 2020-02-13 12:04:46 +0000 |
commit | 634f6a65cb1dfb59c6e4c31a06ae4ea82dbcb809 (patch) | |
tree | 1e942ca11109279dcd2b67c99160550860a45585 /synapse/config/voip.py | |
parent | Factor acme bits out to a separate file (#5521) (diff) | |
parent | Pass config_dir_path and data_dir_path into Config.read_config. (#5522) (diff) | |
download | synapse-634f6a65cb1dfb59c6e4c31a06ae4ea82dbcb809.tar.xz |
Pass config_dir_path and data_dir_path into Config.read_config. (#5522)
Diffstat (limited to 'synapse/config/voip.py')
-rw-r--r-- | synapse/config/voip.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/config/voip.py b/synapse/config/voip.py index 82cf8c53a8..01e0cb2e28 100644 --- a/synapse/config/voip.py +++ b/synapse/config/voip.py @@ -16,7 +16,7 @@ from ._base import Config class VoipConfig(Config): - def read_config(self, config): + def read_config(self, config, **kwargs): self.turn_uris = config.get("turn_uris", []) self.turn_shared_secret = config.get("turn_shared_secret") self.turn_username = config.get("turn_username") |