@webex/web-client-media-engine 3.8.2 → 3.8.3

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
@@ -14338,7 +14338,10 @@ class MultistreamConnection extends EventEmitter$2 {
14338
14338
  sendTransceiver.updateSendParameters(requestedIdEncodingParamsMap);
14339
14339
  }
14340
14340
  createDataChannel() {
14341
- const dataChannel = this.pc.createDataChannel('datachannel', {});
14341
+ const dataChannel = this.pc.createDataChannel('datachannel', {
14342
+ ordered: false,
14343
+ maxRetransmits: 0,
14344
+ });
14342
14345
  dataChannel.onopen = (e) => {
14343
14346
  logger.info('DataChannel opened: ', e);
14344
14347
  [...this.sendTransceivers.keys()].forEach((mediaType) => {