stormcloud-video-player 0.8.12 → 0.8.13

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/lib/index.js CHANGED
@@ -5705,21 +5705,13 @@ var StormcloudVideoPlayer = /*#__PURE__*/ function() {
5705
5705
  currentMuted = this.video.muted;
5706
5706
  currentVolume = this.video.volume;
5707
5707
  this.adPlayer.updateOriginalMutedState(currentMuted, currentVolume);
5708
- if (!this.video.muted) {
5709
- this.video.muted = true;
5710
- if (this.config.debugAdTiming) {
5711
- console.log("[StormcloudVideoPlayer] Muted video in handleAdStart");
5712
- }
5713
- }
5714
5708
  this.inAdBreak = true;
5715
5709
  this.currentAdBreakStartWallClockMs = Date.now();
5716
5710
  this.adBreakPlayedDurationMs = 0;
5717
5711
  this.currentAdIndex = 0;
5718
5712
  this.totalAdsInBreak = 0;
5719
5713
  this.adPodQueue = [];
5720
- this.showAds = true;
5721
- this.showPlaceholderLayer();
5722
- this.adPlayer.showPlaceholder();
5714
+ this.showAds = false;
5723
5715
  if (this.expectedAdBreakDurationMs == null && adBreakDurationMs != null) {
5724
5716
  this.expectedAdBreakDurationMs = adBreakDurationMs;
5725
5717
  }