@webex/web-client-media-engine 2.1.6 → 2.1.7
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.
- package/dist/cjs/index.js +2 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +2 -0
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -13106,7 +13106,9 @@ class MultistreamConnection extends EventEmitter {
|
|
|
13106
13106
|
if (!this.setAnswerResolve) {
|
|
13107
13107
|
throw new Error(`Call to setAnswer without having previously called createOffer`);
|
|
13108
13108
|
}
|
|
13109
|
+
logger.info('calling this.pc.setRemoteDescription()');
|
|
13109
13110
|
return this.pc.setRemoteDescription({ type: 'answer', sdp }).then(() => __awaiter(this, void 0, void 0, function* () {
|
|
13111
|
+
logger.info('this.pc.setRemoteDescription() resolved');
|
|
13110
13112
|
if (this.setAnswerResolve) {
|
|
13111
13113
|
this.setAnswerResolve();
|
|
13112
13114
|
this.setAnswerResolve = undefined;
|