mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
fix(AwsS3 Node): Return confirmation of success after upload (#8312)
This commit is contained in:
parent
cf7131d766
commit
c921665f9a
|
@ -1024,7 +1024,7 @@ export class AwsS3V2 implements INodeType {
|
|||
);
|
||||
}
|
||||
const executionData = this.helpers.constructExecutionMetaData(
|
||||
this.helpers.returnJsonArray(responseData as IDataObject),
|
||||
this.helpers.returnJsonArray(responseData ?? { success: true }),
|
||||
{ itemData: { item: i } },
|
||||
);
|
||||
returnData.push(...executionData);
|
||||
|
|
Loading…
Reference in a new issue