@webex/web-client-media-engine 2.1.1 → 2.1.2
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 +2 -5
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +2 -5
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/esm/index.js
CHANGED
|
@@ -13543,13 +13543,10 @@ class MultistreamConnection extends EventEmitter {
|
|
|
13543
13543
|
track.off(LocalTrack.Events.Muted, onTrackMute);
|
|
13544
13544
|
track.off(LocalTrack.Events.PublishedStateUpdate, onTrackPublish);
|
|
13545
13545
|
track.off(LocalTrack.Events.TrackConstraintsChange, onTrackResolutionChange);
|
|
13546
|
-
if (!track.muted) {
|
|
13547
|
-
this.sendSourceAdvertisement(mediaType);
|
|
13548
|
-
this.sendMediaRequestStatus(mediaType);
|
|
13549
|
-
}
|
|
13550
13546
|
}
|
|
13551
|
-
|
|
13547
|
+
if (!track.muted) {
|
|
13552
13548
|
this.sendSourceAdvertisement(mediaType);
|
|
13549
|
+
this.sendMediaRequestStatus(mediaType);
|
|
13553
13550
|
}
|
|
13554
13551
|
};
|
|
13555
13552
|
track.on(LocalTrack.Events.PublishedStateUpdate, onTrackPublish);
|