@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/cjs/index.js +4 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +4 -1
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -14342,7 +14342,10 @@ class MultistreamConnection extends EventEmitter$2 {
|
|
|
14342
14342
|
sendTransceiver.updateSendParameters(requestedIdEncodingParamsMap);
|
|
14343
14343
|
}
|
|
14344
14344
|
createDataChannel() {
|
|
14345
|
-
const dataChannel = this.pc.createDataChannel('datachannel', {
|
|
14345
|
+
const dataChannel = this.pc.createDataChannel('datachannel', {
|
|
14346
|
+
ordered: false,
|
|
14347
|
+
maxRetransmits: 0,
|
|
14348
|
+
});
|
|
14346
14349
|
dataChannel.onopen = (e) => {
|
|
14347
14350
|
logger.info('DataChannel opened: ', e);
|
|
14348
14351
|
[...this.sendTransceivers.keys()].forEach((mediaType) => {
|