Skip to content

Commit

Permalink
fix(box Node): fix issue with response data not being returned (n8n-i…
Browse files Browse the repository at this point in the history
  • Loading branch information
Joffcom authored Sep 20, 2022
1 parent a01c455 commit 6103b2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/nodes-base/nodes/Box/Box.node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ export class Box implements INodeType {
this.helpers.returnJsonArray(responseData),
{ itemData: { item: i } },
);
responseData.push(...executionData);
returnData.push(...executionData);
} catch (error) {
if (this.continueOnFail()) {
const executionErrorData = this.helpers.constructExecutionMetaData(
Expand Down

0 comments on commit 6103b2d

Please sign in to comment.