summary refs log tree commit diff
path: root/synapse/rest
diff options
context:
space:
mode:
Diffstat (limited to 'synapse/rest')
-rw-r--r--synapse/rest/voip.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/rest/voip.py b/synapse/rest/voip.py
index 7260ff0e8e..2e4627606f 100644
--- a/synapse/rest/voip.py
+++ b/synapse/rest/voip.py
@@ -34,7 +34,7 @@ class VoipRestServlet(RestServlet):
         turnSecret = self.hs.config.turn_shared_secret
         userLifetime = self.hs.config.turn_user_lifetime
         if not turnUris or not turnSecret or not userLifetime:
-            defer.returnValue( (200, {"uris": []}) )
+            defer.returnValue( (200, {}) )
 
         expiry = self.hs.get_clock().time_msec() + userLifetime
         username = "%d:%s" % (expiry, auth_user.to_string())