From d542da0780e35628ab0b4df811fe33a93e8c650a Mon Sep 17 00:00:00 2001 From: Bernhard Kirchen Date: Fri, 15 Apr 2022 18:54:53 +0200 Subject: [PATCH] do not prepend "backlog0" chain with "backlog" --- tasmota/xdrv_10_rules.ino | 1 + 1 file changed, 1 insertion(+) diff --git a/tasmota/xdrv_10_rules.ino b/tasmota/xdrv_10_rules.ino index 152824fd3..edb995930 100644 --- a/tasmota/xdrv_10_rules.ino +++ b/tasmota/xdrv_10_rules.ino @@ -772,6 +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)) { commands = String(F("backlog ")) + commands; }