mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-12 05:17:28 -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),
|
this.helpers.returnJsonArray(responseData),
|
||||||
{ itemData: { item: i } },
|
{ itemData: { item: i } },
|
||||||
);
|
);
|
||||||
responseData.push(...executionData);
|
returnData.push(...executionData);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
if (this.continueOnFail()) {
|
if (this.continueOnFail()) {
|
||||||
const executionErrorData = this.helpers.constructExecutionMetaData(
|
const executionErrorData = this.helpers.constructExecutionMetaData(
|
||||||
|
|
Loading…
Reference in a new issue