mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
🐛 Fix bug that HTTP Request node did process JSON incorrectly
This commit is contained in:
@@ -513,7 +513,7 @@ export class HttpRequest implements INodeType {
|
||||
const fileName = (url).split('/').pop();
|
||||
|
||||
items[itemIndex].binary![dataPropertyName] = await this.helpers.prepareBinaryData(response, fileName);
|
||||
} else if (responseFormat === 'json') {
|
||||
} else if (responseFormat === 'string') {
|
||||
const dataPropertyName = this.getNodeParameter('dataPropertyName', 0) as string;
|
||||
|
||||
returnItems.push({
|
||||
|
||||
Reference in New Issue
Block a user