Skip to content

Commit

Permalink
fix(AwsS3 Node): Return confirmation of success after upload (#8312)
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-radency authored Jan 15, 2024
1 parent cf7131d commit c921665
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/nodes-base/nodes/Aws/S3/V2/AwsS3V2.node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit c921665

Please sign in to comment.