We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be1da42 commit 7eb0085Copy full SHA for 7eb0085
src/client.ts
@@ -469,7 +469,7 @@ export class Openlayer {
469
loggerFor(this).info(`${responseInfo} - ${retryMessage}`);
470
471
const errText = await response.text().catch((err: any) => castToError(err).message);
472
- const errJSON = safeJSON(errText);
+ const errJSON = safeJSON(errText) as any;
473
const errMessage = errJSON ? undefined : errText;
474
475
loggerFor(this).debug(
0 commit comments