1
1
mirror of https://github.com/n8n-io/n8n.git synced 2024-09-19 08:57:09 +03: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:
Ricardo Espinoza 2022-11-04 10:50:38 -04:00 committed by GitHub
parent eb3fffd203
commit 39d4bb2639
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1356,7 +1356,11 @@ export class HttpRequestV3 implements INodeType {
}
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 = {
json: {},