From 147a02d69580d494b807b52cf86f9f2dc222230d Mon Sep 17 00:00:00 2001 From: Yoshihiro Kikuchi Date: Fri, 30 Mar 2018 18:35:05 +0900 Subject: [PATCH] fix stun server url --- client/webrtc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/webrtc.js b/client/webrtc.js index f9c0748..da10661 100755 --- a/client/webrtc.js +++ b/client/webrtc.js @@ -7,7 +7,7 @@ var serverConnection; var peerConnectionConfig = { 'iceServers': [ - {'urls': 'stun.stunprotocol.org:3478'}, + {'urls': 'stun:stun.stunprotocol.org:3478'}, {'urls': 'stun:stun.l.google.com:19302'}, ] };