diff --git a/apps/api/src/scraper/scrapeURL/engines/pdf/index.ts b/apps/api/src/scraper/scrapeURL/engines/pdf/index.ts index 61085592..a7397042 100644 --- a/apps/api/src/scraper/scrapeURL/engines/pdf/index.ts +++ b/apps/api/src/scraper/scrapeURL/engines/pdf/index.ts @@ -238,7 +238,10 @@ export async function scrapePDF( || error instanceof TimeoutError ) { throw error; - } else if (error instanceof Error && error.name === "TimeoutError") { + } else if ( + (error instanceof Error && error.name === "TimeoutError") + || (error instanceof Error && error.message === "Request failed" && error.cause && error.cause instanceof Error && error.cause.name === "TimeoutError") + ) { throw new TimeoutError("PDF parsing timed out, please increase the timeout parameter in your scrape request"); } meta.logger.warn(