Skip to content

Commit 1fc3eea

Browse files
committed
fix: OPTIC-1081: BigInteger support in Data Manager
1 parent 171da82 commit 1fc3eea

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)