diff --git a/scraper/scrapers/nyaasi/nyaa_si_scraper.js b/scraper/scrapers/nyaasi/nyaa_si_scraper.js index 8ea19f3..d16c90f 100644 --- a/scraper/scrapers/nyaasi/nyaa_si_scraper.js +++ b/scraper/scrapers/nyaasi/nyaa_si_scraper.js @@ -29,13 +29,9 @@ async function scrape() { } async function updateSeeders(torrent) { - return limiter.schedule(() => nyaasi.torrent(torrent.torrentId)) - .then(foundTorrent => { - if (Number.isInteger(foundTorrent.seeders)) { - return [foundTorrent]; - } - return [] - }); + // return limiter.schedule(() => nyaasi.torrent(torrent.torrentId)) + // .then(foundTorrent => Number.isInteger(foundTorrent.seeders) ? [foundTorrent] : []); + return Promise.resolve([]); } async function scrapeLatestTorrents() {