This commit is contained in:
David Baker 2014-09-24 17:04:33 +02:00
parent 5383ba5587
commit 4553651138

View file

@ -33,7 +33,7 @@ class VoipRestServlet(RestServlet):
turnUris = self.hs.config.turn_uris
turnSecret = self.hs.config.turn_shared_secret
userLifetime = self.hs.config.turn_user_lifetime
if not turnUri or not turnSecret or not userLifetime:
if not turnUris or not turnSecret or not userLifetime:
defer.returnValue( (200, {"uris": []}) )
expiry = self.hs.get_clock().time_msec() + userLifetime