fix(core): update
This commit is contained in:
parent
7d08f9bdf6
commit
a4ff5c26e2
@ -35,17 +35,19 @@ export class SmartRule<T> {
|
||||
await rule.actionFunction(objectArg);
|
||||
}
|
||||
outcomes.push(checkResult);
|
||||
};
|
||||
}
|
||||
|
||||
const finalOutcome: TTreeActionResult = outcomes.reduce((previous, current, index, array) => {
|
||||
if (current.includes('continue') || previous.includes('continue')) {
|
||||
return 'continue';
|
||||
} else {
|
||||
return 'stop';
|
||||
if (outcomes.length > 0) {
|
||||
const finalOutcomeOfBatch: TTreeActionResult = outcomes.reduce((previous, current, index, array) => {
|
||||
if (current.includes('continue') || previous.includes('continue')) {
|
||||
return 'continue';
|
||||
} else {
|
||||
return 'stop';
|
||||
}
|
||||
});
|
||||
if (finalOutcomeOfBatch === 'stop') {
|
||||
return;
|
||||
}
|
||||
});
|
||||
if (finalOutcome === 'stop') {
|
||||
return;
|
||||
}
|
||||
|
||||
if (startPriority < this.rules[this.rules.length-1].priority) {
|
||||
|
Loading…
Reference in New Issue
Block a user