From 805cccf1b6475c8b673a2fbb2db79307a09b878e Mon Sep 17 00:00:00 2001 From: Pas <74743263+Pasithea0@users.noreply.github.com> Date: Mon, 7 Jul 2025 21:23:37 -0600 Subject: [PATCH] 2/2 lower is watched to 80% --- src/components/overlays/details/EpisodeCarousel.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/overlays/details/EpisodeCarousel.tsx b/src/components/overlays/details/EpisodeCarousel.tsx index 6e1d92a2..e3fefd4e 100644 --- a/src/components/overlays/details/EpisodeCarousel.tsx +++ b/src/components/overlays/details/EpisodeCarousel.tsx @@ -169,8 +169,8 @@ export function EpisodeCarousel({ 100 : 0; - // If watched (>90%), reset to 0%, otherwise set to 100% - const isWatched = percentage > 90; + // If watched (>80%), reset to 0%, otherwise set to 100% + const isWatched = percentage > 80; // Get the poster URL from the mediaPosterUrl prop const posterUrl = mediaPosterUrl;