Fix Backlog0 in rules

This commit is contained in:
Adrian Scillato
2022-04-20 12:40:07 -03:00
committed by GitHub
parent d542da0780
commit 11e860eb6f

View File

@@ -772,8 +772,7 @@ bool RuleSetProcess(uint8_t rule_set, String &event_saved)
// Use Backlog with event to prevent rule event loop exception unless IF is used which uses an implicit backlog
if ((ucommand.indexOf(F("IF ")) == -1) &&
(ucommand.indexOf(F("EVENT ")) != -1) &&
(ucommand.indexOf(F("BACKLOG0 ")) == -1) &&
(ucommand.indexOf(F("BACKLOG ")) == -1)) {
(ucommand.indexOf(F("BACKLOG")) == -1)) {
commands = String(F("backlog ")) + commands;
}