mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
🐛 Fix issue with none-json requests (#2283)
This commit is contained in:
@@ -337,6 +337,7 @@ async function parseRequestObject(requestObject: IDataObject) {
|
|||||||
axiosConfig.headers = Object.assign(axiosConfig.headers || {}, { accept: '*/*' });
|
axiosConfig.headers = Object.assign(axiosConfig.headers || {}, { accept: '*/*' });
|
||||||
}
|
}
|
||||||
if (
|
if (
|
||||||
|
requestObject.json !== false &&
|
||||||
axiosConfig.data !== undefined &&
|
axiosConfig.data !== undefined &&
|
||||||
!(axiosConfig.data instanceof Buffer) &&
|
!(axiosConfig.data instanceof Buffer) &&
|
||||||
!allHeaders.some((headerKey) => headerKey.toLowerCase() === 'content-type')
|
!allHeaders.some((headerKey) => headerKey.toLowerCase() === 'content-type')
|
||||||
|
|||||||
Reference in New Issue
Block a user