From 723bf38eae70ea2c801309eea724a0e79e07fd9d Mon Sep 17 00:00:00 2001 From: TheBeastLT Date: Wed, 14 Oct 2020 13:24:51 +0200 Subject: [PATCH] [scraper] fixes 5.5 sound detection for movies --- scraper/lib/torrentFiles.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scraper/lib/torrentFiles.js b/scraper/lib/torrentFiles.js index 178f946..b4f9316 100644 --- a/scraper/lib/torrentFiles.js +++ b/scraper/lib/torrentFiles.js @@ -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); }