Browse Source

Update tmdb.ts

pull/1044/head
Honkertonken 1 year ago committed by GitHub
parent
commit
c4f68615cd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 17
      src/backend/metadata/tmdb.ts

17
src/backend/metadata/tmdb.ts

@ -173,12 +173,17 @@ export async function multiSearch( @@ -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;
}

Loading…
Cancel
Save