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.
This commit is contained in:
Chad Phillips 2018-10-21 14:50:04 -07:00
parent 8a5aa4209f
commit 90bc06e564
1 changed files with 1 additions and 0 deletions

View File

@ -715,6 +715,7 @@
}
config.bundlePolicy = "max-compat";
config.sdpSemantics = "plan-b";
var peer = new window.RTCPeerConnection(config);