From a33ebfdbcc7780cbbdea61e167fa4234ee21ef0f Mon Sep 17 00:00:00 2001 From: chrisk325 Date: Sun, 15 Mar 2026 15:56:13 +0530 Subject: [PATCH] fix special id mark as watched on trakt --- src/components/home/ContentItem.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/home/ContentItem.tsx b/src/components/home/ContentItem.tsx index 648ff5ed..643aa0cd 100644 --- a/src/components/home/ContentItem.tsx +++ b/src/components/home/ContentItem.tsx @@ -206,7 +206,7 @@ const ContentItem = ({ item, onPress, shouldLoadImage: shouldLoadImageProp, defe } } else { if (item.type === 'movie') { - watchedService.unmarkMovieAsWatched(item.id); + watchedService.unmarkMovieAsWatched(item.id, item.imdb_id ?? undefined); } else { // Unmarking a series from the top level is tricky as we don't know the exact episodes. // For safety and consistency with old behavior, we just clear the legacy flag. @@ -472,4 +472,4 @@ export default React.memo(ContentItem, (prev, next) => { if (prev.item.id !== next.item.id) return false; if (prev.item.poster !== next.item.poster) return false; return true; -}); \ No newline at end of file +});