We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92ee54d commit c7e8977Copy full SHA for c7e8977
src/client.ts
@@ -457,7 +457,7 @@ export class ValTown {
457
loggerFor(this).info(`${responseInfo} - ${retryMessage}`);
458
459
const errText = await response.text().catch((err: any) => castToError(err).message);
460
- const errJSON = safeJSON(errText);
+ const errJSON = safeJSON(errText) as any;
461
const errMessage = errJSON ? undefined : errText;
462
463
loggerFor(this).debug(
0 commit comments