[scraper] fixes 5.5 sound detection for movies

This commit is contained in:
TheBeastLT
2020-10-14 13:24:51 +02:00
parent 15aa0151da
commit 723bf38eae

View File

@@ -25,7 +25,7 @@ async function parseTorrentFiles(torrent) {
}
if (torrent.type === Type.MOVIE && (!parsedTorrentName.seasons ||
parsedTorrentName.season === 5 && parsedTorrentName.episode === 1)) {
parsedTorrentName.season === 5 && [1, 5].includes(parsedTorrentName.episode))) {
return parseMovieFiles(torrent, parsedTorrentName, metadata);
}