diff options
author | David Baker <dbkr@matrix.org> | 2014-09-25 11:24:49 +0200 |
---|---|---|
committer | David Baker <dbkr@matrix.org> | 2014-09-25 11:24:49 +0200 |
commit | a31bf7777694d794d8e861c2bfede4a8ebb8849e (patch) | |
tree | 1a8895df131cfdcf4481ca21192027f9d2f42b52 /synapse/config | |
parent | Refresh turn server before the ttl runs out. Support firefox. (diff) | |
download | synapse-a31bf7777694d794d8e861c2bfede4a8ebb8849e.tar.xz |
Make turn server endpoint return an empty object if no turn servers to
match the normal response. Don't break if the turn_uris option isn't present.
Diffstat (limited to 'synapse/config')
-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 3a211ae6b6..c5131d9bcd 100644 --- a/synapse/config/voip.py +++ b/synapse/config/voip.py @@ -19,7 +19,7 @@ class VoipConfig(Config): def __init__(self, args): super(VoipConfig, self).__init__(args) - self.turn_uris = args.turn_uris.split(",") + self.turn_uris = args.turn_uris.split(",") if args.turn_uris else None self.turn_shared_secret = args.turn_shared_secret self.turn_user_lifetime = args.turn_user_lifetime |