From 07c34a1c4cf37157f92b1c88051c9beb375a6231 Mon Sep 17 00:00:00 2001 From: biglyderv Date: Fri, 31 Jan 2025 21:05:17 -0500 Subject: [PATCH] fix --- site.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site.js b/site.js index ea83618..bc8e06e 100644 --- a/site.js +++ b/site.js @@ -26,8 +26,8 @@ async function urlCollector(url, path, file, useLimit) { let links = body('a'); let urls = []; links.each(function(i, link) { - console.log(`User ${url} has ${i} pages calculated`); if (useLimit && urls.length >= pageLimit * 40) return; + console.log(`User ${url} has ${i} pages calculated`); let h = body(link).attr('href'); if (!h) return;