diff --git a/scraper/scrapers/yts/yts_api.js b/scraper/scrapers/yts/yts_api.js index 0e71f61..cc32233 100644 --- a/scraper/scrapers/yts/yts_api.js +++ b/scraper/scrapers/yts/yts_api.js @@ -69,7 +69,7 @@ function parseResults(results) { function parseMovie(movie) { return movie.torrents.map(torrent => ({ name: `${movie.title} ${movie.year} ${torrent.quality} ${formatType(torrent.type)} `, - torrentId: movie.id, + torrentId: `${movie.id}-${torrent.hash.trim().toLowerCase()}`, infoHash: torrent.hash.trim().toLowerCase(), torrentLink: torrent.url, seeders: torrent.seeds,