We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 961b402 commit 9639077Copy full SHA for 9639077
1 file changed
apps/frontend/app/components/media/display-items.tsx
@@ -94,8 +94,18 @@ export const MetadataDisplayItem = (props: {
94
);
95
return (episodeProgress?.timesSeen ?? 0) > 0;
96
}
97
+ if (
98
+ metadataDetails &&
99
+ metadataDetails.lot !== MediaLot.Show &&
100
+ metadataDetails.lot !== MediaLot.Podcast &&
101
+ metadataDetails.lot !== MediaLot.Anime &&
102
+ metadataDetails.lot !== MediaLot.Manga
103
+ )
104
+ return completedHistory.length > 0;
105
return false;
106
}, [
107
+ metadataDetails,
108
+ completedHistory,
109
userMetadataDetails,
110
props.calendarEventShowInfo,
111
props.calendarEventPodcastInfo,
0 commit comments