We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ae2954 commit be80828Copy full SHA for be80828
src/client.ts
@@ -445,7 +445,7 @@ export class OzAPI {
445
loggerFor(this).info(`${responseInfo} - ${retryMessage}`);
446
447
const errText = await response.text().catch((err: any) => castToError(err).message);
448
- const errJSON = safeJSON(errText);
+ const errJSON = safeJSON(errText) as any;
449
const errMessage = errJSON ? undefined : errText;
450
451
loggerFor(this).debug(
0 commit comments