From 773ae0051705434c6a76ad57454d3b82fcfd7858 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Thu, 23 Jan 2020 16:52:22 +0000 Subject: [PATCH] fix(core): update --- ts/smartrule.classes.smartrule.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }