@webex/web-client-media-engine 3.11.8 → 3.11.9

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
@@ -9484,11 +9484,10 @@ function injectJmpAttributes(mediaDescription, csi, streamSignalingMode) {
9484
9484
  }
9485
9485
  }
9486
9486
  function injectDummyCandidates(mediaDescription) {
9487
- if (mediaDescription.iceInfo.candidates.length === 0) {
9488
- mediaDescription.addLine(new CandidateLine('dummy1', 1, 'udp', 3, '0.0.0.0', 9, 'host'));
9489
- mediaDescription.addLine(new CandidateLine('dummy2', 1, 'tcp', 2, '0.0.0.0', 9, 'host'));
9490
- mediaDescription.addLine(new CandidateLine('dummy3', 1, 'udp', 1, '0.0.0.0', 9, 'relay'));
9491
- }
9487
+ mediaDescription.iceInfo.candidates = [];
9488
+ mediaDescription.addLine(new CandidateLine('dummy1', 1, 'udp', 3, '0.0.0.0', 9, 'host'));
9489
+ mediaDescription.addLine(new CandidateLine('dummy2', 1, 'tcp', 2, '0.0.0.0', 9, 'host'));
9490
+ mediaDescription.addLine(new CandidateLine('dummy3', 1, 'udp', 1, '0.0.0.0', 9, 'relay'));
9492
9491
  }
9493
9492
  function removeMidRidExtensions(mediaDescription) {
9494
9493
  mediaDescription.extMaps.forEach((extMapLine, extId, extMap) => {