mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-12 13:27:31 -08:00
fix(HTTP Request Node): use the data in "Put Output in Field" field (#4487)
🐛 Use the data in "Put Output in Field" field
;
This commit is contained in:
parent
eb3fffd203
commit
39d4bb2639
|
@ -1356,7 +1356,11 @@ export class HttpRequestV3 implements INodeType {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (responseFormat === 'file') {
|
if (responseFormat === 'file') {
|
||||||
const outputPropertyName = this.getNodeParameter('outputPropertyName', 0, 'data') as string;
|
const outputPropertyName = this.getNodeParameter(
|
||||||
|
'options.response.response.outputPropertyName',
|
||||||
|
0,
|
||||||
|
'data',
|
||||||
|
) as string;
|
||||||
|
|
||||||
const newItem: INodeExecutionData = {
|
const newItem: INodeExecutionData = {
|
||||||
json: {},
|
json: {},
|
||||||
|
|
Loading…
Reference in a new issue