From c7c267629d43490d55297a2431484e1432a8376e Mon Sep 17 00:00:00 2001 From: Tony Stork Date: Sun, 29 Mar 2026 23:37:49 -0400 Subject: [PATCH] Fix incorrect variable type --- climate/emma-bedroom/watchdog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/climate/emma-bedroom/watchdog.js b/climate/emma-bedroom/watchdog.js index ace9a09..458cb17 100644 --- a/climate/emma-bedroom/watchdog.js +++ b/climate/emma-bedroom/watchdog.js @@ -10,7 +10,7 @@ const sleeping = states["input_boolean.emma_sleeping"].state let proceed = false -if (ac === true && allowed === 'on' && schedMode === 'AC' && coolingActive === 'on') { +if (ac === 'on' && allowed === 'on' && schedMode === 'AC' && coolingActive === 'on') { proceed = true }