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 +});