mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-03-16 15:56:31 +00:00
fix special id mark as watched on trakt
This commit is contained in:
parent
8dc96f4ab3
commit
a33ebfdbcc
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
});
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue