summary refs log tree commit diff
path: root/synapse/config/voip.py
diff options
context:
space:
mode:
authorDavid Baker <dbkr@matrix.org>2014-09-25 11:24:49 +0200
committerDavid Baker <dbkr@matrix.org>2014-09-25 11:24:49 +0200
commita31bf7777694d794d8e861c2bfede4a8ebb8849e (patch)
tree1a8895df131cfdcf4481ca21192027f9d2f42b52 /synapse/config/voip.py
parentRefresh turn server before the ttl runs out. Support firefox. (diff)
downloadsynapse-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/voip.py')
-rw-r--r--synapse/config/voip.py2
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