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