diff --git a/src/ext/lib/video-transform/Stretcher.js b/src/ext/lib/video-transform/Stretcher.js index 96cb72a..477539f 100644 --- a/src/ext/lib/video-transform/Stretcher.js +++ b/src/ext/lib/video-transform/Stretcher.js @@ -256,7 +256,7 @@ squeezeFactor: ${squeezeFactor}`, '\nvideo', this.conf.video); */ chromeBugMitigation(stretchFactors) { if (BrowserDetect.anyChromium && this.conf.player?.dimensions?.fullscreen) { - const playerAr = playerArOverride || this.conf.player.dimensions.width / this.conf.player.dimensions.height; + const playerAr = this.conf.player.dimensions.width / this.conf.player.dimensions.height; const streamAr = this.conf.video.videoWidth / this.conf.video.videoHeight; let maxSafeAr;