Merge pull request #4328 from lohxt1/main

revert serialization of debugInfo data
This commit is contained in:
lohit
2025-03-25 19:52:35 +05:30
committed by GitHub

View File

@@ -1282,7 +1282,7 @@ export const fetchOauth2Credentials = (payload) => async (dispatch, getState) =>
url,
collectionUid,
credentialsId,
debugInfo: safeParseJSON(safeStringifyJSON(debugInfo)),
debugInfo,
folderUid: folderUid || null,
itemUid: !folderUid ? itemUid : null
})
@@ -1305,7 +1305,7 @@ export const refreshOauth2Credentials = (payload) => async (dispatch, getState)
url,
collectionUid,
credentialsId,
debugInfo: safeParseJSON(safeStringifyJSON(debugInfo)),
debugInfo,
folderUid: folderUid || null,
itemUid: !folderUid ? itemUid : null
})