diff --git a/scraper/scrapers/horriblesubs/horriblesubs_scraper.js b/scraper/scrapers/horriblesubs/horriblesubs_scraper.js index 4383d7f..579c15d 100644 --- a/scraper/scrapers/horriblesubs/horriblesubs_scraper.js +++ b/scraper/scrapers/horriblesubs/horriblesubs_scraper.js @@ -204,7 +204,7 @@ async function checkIfExists(torrent) { } else if (existingTorrent.provider === NAME) { return undefined; // torrent by this provider already exists } - return { ...torrent.get(), size: existingTorrent.size, seeders: existingTorrent.seeders }; + return { ...torrent, size: existingTorrent.size, seeders: existingTorrent.seeders }; } module.exports = { scrape, NAME }; \ No newline at end of file