This commit is contained in:
Gergő Móricz 2025-04-10 12:21:52 +02:00
parent 5cb33ee03f
commit c33d2f042f

View File

@ -231,7 +231,7 @@ async function scrapeURLLoop(meta: Meta): Promise<ScrapeUrlResponse> {
meta.options.timeout !== undefined
? Math.round(meta.options.timeout / Math.min(fallbackList.length, 2))
: (!meta.options.actions && !meta.options.jsonOptions && !meta.options.extract)
? 120000
? Math.round(120000 / Math.min(fallbackList.length, 2))
: undefined;
for (const { engine, unsupportedFeatures } of fallbackList) {