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 {