From 1ce87c4fce893f77106e8f7c46d4d953a85785eb Mon Sep 17 00:00:00 2001 From: Nulo Date: Thu, 4 Jan 2024 19:27:19 -0300 Subject: [PATCH] esperar mas --- scraper/scrap.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scraper/scrap.ts b/scraper/scrap.ts index 6b723df..195d424 100644 --- a/scraper/scrap.ts +++ b/scraper/scrap.ts @@ -27,7 +27,7 @@ export async function downloadList(path: string) { list, async (urlS) => { let res: ScrapResult = { type: "skipped" }; - for (let attempts = 0; attempts < 3; attempts++) { + for (let attempts = 0; attempts < 6; attempts++) { if (attempts !== 0) await wait(1500); res = await scrap(urlS); if (res.type === "done" || res.type === "skipped") {