From: Chad Phillips Date: Sun, 21 Oct 2018 21:50:04 +0000 (-0700) Subject: FS-11470: WebRTC Unified plan not properly supported X-Git-Tag: v1.8.3~1^2~34^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=90bc06e56471cbd205227f915105e4a0ce06eba0;p=thirdparty%2Ffreeswitch.git FS-11470: WebRTC Unified plan not properly supported Chrome is beginning to default their SDP semantics to the WebRTC standard 'Unified Plan', and Verto does not currently construct its SDP according to this standard. For now, force the browser to use 'Plan B' semantics. --- diff --git a/html5/verto/js/src/jquery.FSRTC.js b/html5/verto/js/src/jquery.FSRTC.js index 661442f0b4..82b7c6fd8d 100644 --- a/html5/verto/js/src/jquery.FSRTC.js +++ b/html5/verto/js/src/jquery.FSRTC.js @@ -715,6 +715,7 @@ } config.bundlePolicy = "max-compat"; + config.sdpSemantics = "plan-b"; var peer = new window.RTCPeerConnection(config);