mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
fix(core): Error when multiple nodes return items with multiple paired items (#14883)
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user