🐛 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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user