From 90bc06e56471cbd205227f915105e4a0ce06eba0 Mon Sep 17 00:00:00 2001 From: Chad Phillips Date: Sun, 21 Oct 2018 14:50:04 -0700 Subject: [PATCH] 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. --- html5/verto/js/src/jquery.FSRTC.js | 1 + 1 file changed, 1 insertion(+) 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);