This commit is contained in:
Cat /dev/Nulo 2024-01-11 23:23:47 -03:00
parent 78e0f3cdee
commit 6507bd944b

View file

@ -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);