@webex/web-client-media-engine 1.37.0 → 1.37.1

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
@@ -9596,7 +9596,10 @@ class MultistreamConnection extends EventEmitter {
9596
9596
  initializePeerConnection() {
9597
9597
  var _a;
9598
9598
  (_a = this.pc) === null || _a === void 0 ? void 0 : _a.close();
9599
- this.pc = new PeerConnection({ iceServers: this.options.iceServers });
9599
+ this.pc = new PeerConnection({
9600
+ iceServers: this.options.iceServers,
9601
+ bundlePolicy: this.options.bundlePolicy,
9602
+ });
9600
9603
  this.pc.on(PeerConnection.Events.ConnectionStateChange, (state) => this.emit(exports.MultistreamConnectionEventNames.ConnectionStateUpdate, state));
9601
9604
  this.attachMetricsObserver();
9602
9605
  this.createDataChannel();