mirror of
https://github.com/knightcrawler-stremio/knightcrawler.git
synced 2024-12-20 03:29:51 +00:00
[scraper] fixes 5.5 sound detection for movies
This commit is contained in:
@@ -25,7 +25,7 @@ async function parseTorrentFiles(torrent) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (torrent.type === Type.MOVIE && (!parsedTorrentName.seasons ||
|
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);
|
return parseMovieFiles(torrent, parsedTorrentName, metadata);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user