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