Update tmdb.ts

This commit is contained in:
Honkertonken 2024-03-27 18:20:57 +05:30 committed by GitHub
parent 27e73a8ad4
commit c4f68615cd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 11 additions and 6 deletions

View File

@ -173,12 +173,17 @@ export async function multiSearch(
language: "en-US",
page: 1,
});
// filter out results that aren't movies or shows
const results = data.results.filter(
(r) =>
r.media_type === TMDBContentTypes.MOVIE ||
r.media_type === TMDBContentTypes.TV,
);
const currentDate = new Date();
// filter out results that aren't movies or shows or are unreleased
const results = data.results.filter((r) => {
if (r.media_type === TMDBContentTypes.MOVIE) {
return new Date(r.release_date) <= currentDate;
}
if (r.media_type === TMDBContentTypes.TV) {
return new Date(r.first_air_date) <= currentDate;
}
return false;
});
return results;
}