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

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