From 1b15f0b5f18678cd5040cecda7135ae1d03f5a15 Mon Sep 17 00:00:00 2001 From: Lachezar Lechev Date: Fri, 24 Oct 2025 09:28:28 +0300 Subject: [PATCH] fix: player - popup for next video should show up on disabled binge_watching Signed-off-by: Lachezar Lechev --- src/routes/Player/Player.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/Player/Player.js b/src/routes/Player/Player.js index 4c8fbff99..0e7939acc 100644 --- a/src/routes/Player/Player.js +++ b/src/routes/Player/Player.js @@ -434,7 +434,7 @@ const Player = ({ urlParams, queryParams }) => { }, [video.state.videoParams]); React.useEffect(() => { - if (!!settings.bingeWatching && player.nextVideo !== null && !nextVideoPopupDismissed.current) { + if (player.nextVideo !== null && !nextVideoPopupDismissed.current) { if (video.state.time !== null && video.state.duration !== null && video.state.time < video.state.duration && (video.state.duration - video.state.time) <= settings.nextVideoNotificationDuration) { openNextVideoPopup(); } else {