Skip to content

Commit

Permalink
fix(Date & Time Node): Reset responseData at end of loop (#6385)
Browse files Browse the repository at this point in the history
reset responseData at end of loop
  • Loading branch information
flipswitchingmonkey authored Jun 6, 2023
1 parent 05c4229 commit eaa8648
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/nodes-base/nodes/DateTime/V2/DateTimeV2.node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,8 @@ export class DateTimeV2 implements INodeType {
},
);
returnData.push(...executionData);
// Reset responseData
responseData.length = 0;
}
return this.prepareOutputData(returnData);
}
Expand Down

0 comments on commit eaa8648

Please sign in to comment.