fix(AwsS3 Node): Return confirmation of success after upload (#8312)

This commit is contained in:
Michael Kret 2024-01-15 18:00:47 +02:00 committed by GitHub
parent cf7131d766
commit c921665f9a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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);