mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-31 16:57:08 +02:00
fix(core): Error when multiple nodes return items with multiple paired items (#14883)
This commit is contained in:
parent
9672a6db0a
commit
ddb688ba30
|
|
@ -900,7 +900,7 @@ export class WorkflowDataProxy {
|
|||
return null;
|
||||
}
|
||||
})
|
||||
.filter((result) => result !== null);
|
||||
.filter((result) => result !== null && result !== undefined);
|
||||
|
||||
if (results.length !== 1) {
|
||||
// Check if the results are all the same
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user