Skip to content

Commit a2ef47a

Browse files
authored
fix: OPTIC-1081: BigInteger support in Data Manager (#6328)
1 parent 21752a6 commit a2ef47a

File tree

1 file changed

+1
-1
lines changed
  • web/libs/datamanager/src/utils/api-proxy

1 file changed

+1
-1
lines changed

web/libs/datamanager/src/utils/api-proxy/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ export class APIProxy {
243243
try {
244244
const responseData =
245245
rawResponse.status !== 204
246-
? JSON.parse(this.alwaysExpectJSON && alwaysExpectJSON ? responseText : responseText || "{}")
246+
? parseJson(this.alwaysExpectJSON && alwaysExpectJSON ? responseText : responseText || "{}")
247247
: { ok: true };
248248

249249
if (methodSettings.convert instanceof Function) {

0 commit comments

Comments
 (0)