Fixing an issue with pausing automations.

This commit is contained in:
mike12345567 2021-06-17 16:38:25 +01:00
parent ac85f117f6
commit 90ca700544
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ async function checkForCronTriggers({ appId, oldAuto, newAuto }) {
const cronTriggerActivated = isLive(newAuto) && !isLive(oldAuto) const cronTriggerActivated = isLive(newAuto) && !isLive(oldAuto)
if (cronTriggerRemoved || cronTriggerDeactivated) { if (cronTriggerRemoved || cronTriggerDeactivated && oldTrigger.cronJobId) {
await triggers.automationQueue.removeRepeatableByKey(oldTrigger.cronJobId) await triggers.automationQueue.removeRepeatableByKey(oldTrigger.cronJobId)
} }
// need to create cron job // need to create cron job