diff --git a/modules/xmpp/TraceablePeerConnection.js b/modules/xmpp/TraceablePeerConnection.js index 47a33113e..5e8913a51 100644 --- a/modules/xmpp/TraceablePeerConnection.js +++ b/modules/xmpp/TraceablePeerConnection.js @@ -179,7 +179,7 @@ TraceablePeerConnection.prototype.setLocalDescription = function (description, s this.trace('setLocalDescription::preTransform (Plan B)', dumpSDP(description)); // if we're running on FF, transform to Plan A first. if (navigator.mozGetUserMedia) { - description = this.interop.toPlanA(description); + description = this.interop.toUnifiedPlan(description); } else { description = APP.simulcast.transformLocalDescription(description); } @@ -206,7 +206,7 @@ TraceablePeerConnection.prototype.setRemoteDescription = function (description, this.trace('setRemoteDescription::preTransform (Plan B)', dumpSDP(description)); // if we're running on FF, transform to Plan A first. if (navigator.mozGetUserMedia) { - description = this.interop.toPlanA(description); + description = this.interop.toUnifiedPlan(description); } else { description = APP.simulcast.transformRemoteDescription(description); diff --git a/package.json b/package.json index fe780e2c4..1ebc82438 100644 --- a/package.json +++ b/package.json @@ -18,8 +18,8 @@ "events": "*", "pako": "*", "i18next-client": "1.7.7", - "sdp-interop": "jitsi/sdp-interop#f65fedfe57a", - "sdp-transform": "1.3.0", + "sdp-interop": "0.1.2", + "sdp-transform": "1.4.0", "async": "0.9.0", "retry": "0.6.1" },