From 87adc0472e6b724b5760f78857582c93ca7f4c20 Mon Sep 17 00:00:00 2001 From: DebaucheryLibrarian Date: Thu, 24 Oct 2024 02:03:53 +0200 Subject: [PATCH] Removed stray console log from AnalVids scraper. --- src/scrapers/analvids.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/scrapers/analvids.js b/src/scrapers/analvids.js index 2e518d06..0c386893 100644 --- a/src/scrapers/analvids.js +++ b/src/scrapers/analvids.js @@ -93,8 +93,6 @@ async function fetchLatest(channel, page) { // const res = await unprint.get(`https://www.analvids.com/new-videos/${page}`, { selectAll: '.card-scene' }); // analvids as channel const res = await unprint.get(`${channel.url}/latest/${page}`, { selectAll: '.card-scene' }); // studios as channels - console.log(res.ok, res.status, res.context.length, channel.url); - if (res.ok) { return scrapeAll(res.context, channel); }