From 5519f077aa6dd3296d82fc08aee2c52a196059fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=B3ricz=20Gerg=C5=91?= Date: Thu, 14 Nov 2024 10:13:48 +0100 Subject: [PATCH] fix(scrapeURL): adjust error message for clarity --- apps/api/src/scraper/scrapeURL/error.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/api/src/scraper/scrapeURL/error.ts b/apps/api/src/scraper/scrapeURL/error.ts index 56ab290d..c78c812d 100644 --- a/apps/api/src/scraper/scrapeURL/error.ts +++ b/apps/api/src/scraper/scrapeURL/error.ts @@ -18,7 +18,7 @@ export class NoEnginesLeftError extends Error { public results: EngineResultsTracker; constructor(fallbackList: Engine[], results: EngineResultsTracker) { - super("All scraping engines failed!"); + super("All scraping engines failed! -- Double check the URL to make sure it's not broken. If the issue persists, contact us at help@firecrawl.com."); this.fallbackList = fallbackList; this.results = results; }