diff --git a/link-scrapers/dia.ts b/link-scrapers/dia.ts index 5b469f6..e3a0c73 100644 --- a/link-scrapers/dia.ts +++ b/link-scrapers/dia.ts @@ -104,7 +104,7 @@ async function scrapBySite() { await pMap( links, async (url) => { - const res = await fetch(url); + const res = await fetch(url, { timeout: false }); const html = await res.text(); const { document } = parseHTML(html);