🐛 Fixes issue handling response when json property is not set (#2318)

Also fixes an small bug reading the keyCondtionExpression parameter
This commit is contained in:
Ricardo Espinoza
2021-10-13 19:36:33 -04:00
committed by GitHub
parent 71d7ed1164
commit e296b02185
2 changed files with 2 additions and 2 deletions

View File

@@ -301,7 +301,7 @@ async function parseRequestObject(requestObject: IDataObject) {
});
}
}
if (requestObject.json === false) {
if (requestObject.json === false || requestObject.json === undefined) {
// Prevent json parsing
axiosConfig.transformResponse = (res) => res;
}