We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 322bb1f commit 4974f31Copy full SHA for 4974f31
1 file changed
src/components/MediaSlider/index.tsx
@@ -86,7 +86,10 @@ const MediaSlider = ({
86
titles = titles.filter(
87
(i) =>
88
(i.mediaType === 'movie' || i.mediaType === 'tv') &&
89
- (!i.mediaInfo?.requests || i.mediaInfo.requests.length === 0)
+ (i.mediaInfo?.status === MediaStatus.AVAILABLE ||
90
+ i.mediaInfo?.status === MediaStatus.PARTIALLY_AVAILABLE ||
91
+ !i.mediaInfo?.requests ||
92
+ i.mediaInfo.requests.length === 0)
93
);
94
}
95
0 commit comments