mirror of https://github.com/openclaw/openclaw.git
Make openclaw consistent in this file (#8533)
Co-authored-by: stephenchen2025 <schenjobs@gmail.com>
This commit is contained in:
parent
f04e84f194
commit
d2ff28dda7
|
|
@ -23,10 +23,10 @@ function enhanceBrowserFetchError(url: string, err: unknown, timeoutMs: number):
|
|||
msgLower.includes("aborterror");
|
||||
if (looksLikeTimeout) {
|
||||
return new Error(
|
||||
`Can't reach the openclaw browser control service (timed out after ${timeoutMs}ms). ${hint}`,
|
||||
`Can't reach the OpenClaw browser control service (timed out after ${timeoutMs}ms). ${hint}`,
|
||||
);
|
||||
}
|
||||
return new Error(`Can't reach the openclaw browser control service. ${hint} (${msg})`);
|
||||
return new Error(`Can't reach the OpenClaw browser control service. ${hint} (${msg})`);
|
||||
}
|
||||
|
||||
async function fetchHttpJson<T>(
|
||||
|
|
|
|||
Loading…
Reference in New Issue