From 1fad53d8d0b4ed1fec39186bd8a64f30a5a0d1de Mon Sep 17 00:00:00 2001 From: Cecylia Bocovich Date: Fri, 12 Jul 2019 10:21:38 -0400 Subject: [PATCH] Adding back the STUN server port configuration In Firefox, leaving out the STUN port caused connections to the STUN server to fail --- proxy/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy/config.js b/proxy/config.js index af8bc02..042875b 100644 --- a/proxy/config.js +++ b/proxy/config.js @@ -30,7 +30,7 @@ Config.prototype.connectionsPerClient = 1; Config.prototype.pcConfig = { iceServers: [ { - urls: ['stun:stun.l.google.com'] + urls: ['stun:stun.l.google.com:19302'] } ] };