mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-24 20:24:05 -08:00
fix(box Node): fix issue with response data not being returned (#4147)
This commit is contained in:
parent
3e2e9e6009
commit
3cfc5b55ab
|
@ -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(
|
||||
|
|
Loading…
Reference in a new issue