]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
revert
authorBrian West <brian@freeswitch.org>
Wed, 20 Sep 2017 19:37:48 +0000 (14:37 -0500)
committerBrian West <brian@freeswitch.org>
Wed, 20 Sep 2017 19:37:48 +0000 (14:37 -0500)
html5/verto/js/src/jquery.FSRTC.js

index 00ee073d1f0e891f8642b40111e8f7b84cd9ba66..54db1acd4bcbc55aa6c96eb1d78947fb54f6e0d1 100644 (file)
     function FSRTCPeerConnection(options) {
        var gathering = false, done = false;
        var config = {};
-       var default_ice;
-
-
-       if (navigator.appVersion.indexOf('Edge') > -1) {
-            default_ice = {
-               urls: ['turn:turn-testdrive.cloudapp.net:3478?transport=udp'],
-               username: "redmond",
-               credential: "redmond123"
-           };
-       } else {
-            default_ice = {
-               urls: ['stun:stun.l.google.com:19302']
-           }
-       }
+        var default_ice = {
+           urls: ['stun:stun.l.google.com:19302']
+       };
 
         if (options.iceServers) {
             if (typeof(options.iceServers) === "boolean") {