diff --git a/ts/smartrule.classes.smartrule.ts b/ts/smartrule.classes.smartrule.ts index bf76788..e996c51 100644 --- a/ts/smartrule.classes.smartrule.ts +++ b/ts/smartrule.classes.smartrule.ts @@ -33,7 +33,7 @@ export class SmartRule { for (const rule of nextBatch) { const checkResult = await rule.checkFunction(objectArg); if (checkResult.startsWith("apply")) { - await rule.actionFunction(objectArg); + await rule.actionFunction(objectArg); // here the action function is run } outcomes.push(checkResult); }