diff --git a/scraper/lib/torrentEntries.js b/scraper/lib/torrentEntries.js index ab8bfb8..fc63f89 100644 --- a/scraper/lib/torrentEntries.js +++ b/scraper/lib/torrentEntries.js @@ -91,7 +91,7 @@ async function updateTorrentSeeders(torrent) { return repository.getTorrent(torrent) .catch(() => undefined) .then(stored => { - if (stored) { + if (stored && (!torrent.provider || torrent.provider === stored.provider)) { stored.seeders = torrent.seeders; stored.changed('updatedAt', true); return stored.save()