diff --git a/scraper/lib/repository.js b/scraper/lib/repository.js index 0831e68..b6daa63 100644 --- a/scraper/lib/repository.js +++ b/scraper/lib/repository.js @@ -186,7 +186,7 @@ function getTorrentsWithoutSize() { function getUpdateSeedersTorrents() { const until = moment().subtract(7, 'days').format('YYYY-MM-DD'); return Torrent.findAll({ - where: literal(`torrent."updatedAt" < \'${until}\'`), + where: literal(`torrent."updatedAt" < \'${until}\' and torrent."provider" not in (\'NyaaSi\')`), limit: 100, order: [ ['seeders', 'DESC'],