From aacaf7770782f601df9367df6e9ae806e0caad20 Mon Sep 17 00:00:00 2001 From: Stephan Hadinger Date: Sun, 21 Mar 2021 19:45:32 +0100 Subject: [PATCH] Berry fix rules --- tasmota/xdrv_52_9_berry.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasmota/xdrv_52_9_berry.ino b/tasmota/xdrv_52_9_berry.ino index df2ba5b6b..1a3c4fa81 100644 --- a/tasmota/xdrv_52_9_berry.ino +++ b/tasmota/xdrv_52_9_berry.ino @@ -84,7 +84,7 @@ bool callBerryRule(void) { berry.rules_busy = true; char * json_event = TasmotaGlobal.mqtt_data; bool serviced = false; - serviced = callBerryEventDispatcher(PSTR("exec_rules"), nullptr, 0, TasmotaGlobal.mqtt_data); + serviced = callBerryEventDispatcher(PSTR("rule"), nullptr, 0, TasmotaGlobal.mqtt_data); berry.rules_busy = false; return serviced; // TODO event not handled }