mirror of
https://git.mirrors.martin98.com/https://github.com/mendableai/firecrawl
synced 2025-08-12 19:18:58 +08:00
fix(runWebScraper): proper error handling
This commit is contained in:
parent
2de659d810
commit
139e2c9a05
@ -96,7 +96,6 @@ export async function runWebScraper({
|
||||
...internalOptions,
|
||||
});
|
||||
if (!response.success) {
|
||||
error = response.error;
|
||||
if (response.error instanceof Error) {
|
||||
throw response.error;
|
||||
} else {
|
||||
@ -124,7 +123,8 @@ export async function runWebScraper({
|
||||
// status code is good -- do not attempt retry
|
||||
break;
|
||||
}
|
||||
} catch (error) {
|
||||
} catch (_error) {
|
||||
error = _error;
|
||||
engines =
|
||||
response !== undefined
|
||||
? response.engines
|
||||
|
Loading…
x
Reference in New Issue
Block a user