1
0
Fork 0
mirror of https://github.com/movie-web/movie-web.git synced 2025-02-18 01:20:05 +00:00

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

View file

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