Merge remote-tracking branch 'upstream/develop' into develop

This commit is contained in:
Fallenbagel
2023-06-11 06:44:07 +05:00
2 changed files with 14 additions and 8 deletions

View File

@@ -863,6 +863,15 @@
"contributions": [ "contributions": [
"code" "code"
] ]
},
{
"login": "Fallenbagel",
"name": "Fallenbagel",
"avatar_url": "https://avatars.githubusercontent.com/u/98979876?v=4",
"profile": "https://github.com/Fallenbagel",
"contributions": [
"code"
]
} }
], ],
"badgeTemplate": "<a href=\"#contributors-\"><img alt=\"All Contributors\" src=\"https://img.shields.io/badge/all_contributors-<%= contributors.length %>-orange.svg\"/></a>", "badgeTemplate": "<a href=\"#contributors-\"><img alt=\"All Contributors\" src=\"https://img.shields.io/badge/all_contributors-<%= contributors.length %>-orange.svg\"/></a>",

View File

@@ -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
); );
} }