fix: fixes RT ratings for tv shows (#3492)

fix #3491
pull/3493/head
Fallenbagel 11 months ago committed by GitHub
parent 21231186d1
commit 04fbd00d4a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -17,7 +17,7 @@ interface RTAlgoliaHit {
title: string; title: string;
titles: string[]; titles: string[];
description: string; description: string;
releaseYear: string; releaseYear: number;
rating: string; rating: string;
genres: string[]; genres: string[];
updateDate: string; updateDate: string;
@ -111,22 +111,19 @@ class RottenTomatoes extends ExternalAPI {
// First, attempt to match exact name and year // First, attempt to match exact name and year
let movie = contentResults.hits.find( let movie = contentResults.hits.find(
(movie) => movie.releaseYear === year.toString() && movie.title === name (movie) => movie.releaseYear === year && movie.title === name
); );
// If we don't find a movie, try to match partial name and year // If we don't find a movie, try to match partial name and year
if (!movie) { if (!movie) {
movie = contentResults.hits.find( movie = contentResults.hits.find(
(movie) => (movie) => movie.releaseYear === year && movie.title.includes(name)
movie.releaseYear === year.toString() && movie.title.includes(name)
); );
} }
// If we still dont find a movie, try to match just on year // If we still dont find a movie, try to match just on year
if (!movie) { if (!movie) {
movie = contentResults.hits.find( movie = contentResults.hits.find((movie) => movie.releaseYear === year);
(movie) => movie.releaseYear === year.toString()
);
} }
// One last try, try exact name match only // One last try, try exact name match only
@ -181,7 +178,7 @@ class RottenTomatoes extends ExternalAPI {
if (year) { if (year) {
tvshow = contentResults.hits.find( tvshow = contentResults.hits.find(
(series) => series.releaseYear === year.toString() (series) => series.releaseYear === year
); );
} }

Loading…
Cancel
Save