From 0c3f591b51235a62ffb3a58a04e8e9ee8418523f Mon Sep 17 00:00:00 2001 From: Botzy Date: Tue, 18 Mar 2025 14:47:52 +0200 Subject: [PATCH] fix(Video): blur image only for series when hideSpoilers is on --- src/components/Video/Video.js | 2 +- src/routes/Player/NextVideoPopup/NextVideoPopup.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Video/Video.js b/src/components/Video/Video.js index 8cbc5007b..94fbefcc7 100644 --- a/src/components/Video/Video.js +++ b/src/components/Video/Video.js @@ -68,7 +68,7 @@ const Video = ({ className, id, title, thumbnail, season, episode, released, upc } }, [deepLinks]); const renderLabel = React.useMemo(() => function renderLabel({ className, id, title, thumbnail, episode, released, upcoming, watched, progress, scheduled, children, ...props }) { - const blurThumbnail = profile.settings.hideSpoilers && !watched; + const blurThumbnail = profile.settings.hideSpoilers && season && episode && !watched; return (