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;