@webex/web-client-media-engine 2.0.5 → 2.0.6

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
@@ -9188,7 +9188,9 @@ function injectJmpAttributes(parsedSdp, csiMap, streamSignalingMode) {
9188
9188
  function injectDummyCandidates(parsedSdp) {
9189
9189
  parsedSdp.media.forEach((mLine) => {
9190
9190
  if (mLine.iceInfo.candidates.length === 0) {
9191
- mLine.addLine(new CandidateLine('dummy', 1, 'udp', 1, '0.0.0.0', 1, 'host'));
9191
+ mLine.addLine(new CandidateLine('dummy1', 1, 'udp', 1, '0.0.0.0', 1, 'host'));
9192
+ mLine.addLine(new CandidateLine('dummy2', 2, 'tcp', 2, '0.0.0.0', 2, 'host'));
9193
+ mLine.addLine(new CandidateLine('dummy3', 3, 'udp', 3, '0.0.0.0', 3, 'relay'));
9192
9194
  }
9193
9195
  });
9194
9196
  }