android-emulator-webrtc 1.0.15 → 1.0.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -277,7 +277,7 @@ var JsepProtocol = /*#__PURE__*/function () {
|
|
|
277
277
|
_this._handleSDP(_this.old_emu_patch.sdp);
|
|
278
278
|
}
|
|
279
279
|
|
|
280
|
-
if (_this.haveOffer) {
|
|
280
|
+
if (_this.old_emu_patch.haveOffer) {
|
|
281
281
|
// We have a remote peer, add the candidates in.
|
|
282
282
|
while (_this.old_emu_patch.candidates.length > 0) {
|
|
283
283
|
_this._handleCandidate(_this.old_emu_patch.candidates.shift());
|
package/package.json
CHANGED
|
@@ -271,7 +271,7 @@ export default class JsepProtocol {
|
|
|
271
271
|
this._handleSDP(this.old_emu_patch.sdp);
|
|
272
272
|
}
|
|
273
273
|
|
|
274
|
-
if (this.haveOffer) {
|
|
274
|
+
if (this.old_emu_patch.haveOffer) {
|
|
275
275
|
// We have a remote peer, add the candidates in.
|
|
276
276
|
while (this.old_emu_patch.candidates.length > 0) {
|
|
277
277
|
this._handleCandidate(this.old_emu_patch.candidates.shift());
|