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

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: {},