@webex/web-client-media-engine 3.22.3 → 3.22.4

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 CHANGED
@@ -15420,6 +15420,12 @@ SCTP Max Message Size: ${maxMessageSize}`);
15420
15420
  injectDummyCandidates(media);
15421
15421
  });
15422
15422
  }
15423
+ if (BrowserInfo.isFirefox() && this.options.doFullIce) {
15424
+ const { candidates } = parsedOffer.media[0].iceInfo;
15425
+ parsedOffer.media.forEach((media) => {
15426
+ media.iceInfo.candidates = candidates;
15427
+ });
15428
+ }
15423
15429
  if (BrowserInfo.isFirefox()) {
15424
15430
  setupBundle(parsedOffer, this.options.bundlePolicy, this.midPredictor.getMidMap());
15425
15431
  if (this.options.bundlePolicy === 'max-bundle') {