mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-21 11:49:59 +00:00
fix(core): Continue with error output reverse items in success branch (#11684)
This commit is contained in:
@@ -1243,7 +1243,7 @@ export class WorkflowExecute {
|
||||
: [];
|
||||
|
||||
while (items.length) {
|
||||
const item = items.pop();
|
||||
const item = items.shift();
|
||||
if (item === undefined) {
|
||||
continue;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user