From 11f590b19f535480b16625ddddf25575f9ca2e52 Mon Sep 17 00:00:00 2001 From: Jon Ziebell Date: Sat, 11 Oct 2025 06:30:00 -0400 Subject: [PATCH] Fixed alert from 0.8C to 0.6C --- js/component/alert.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/component/alert.js b/js/component/alert.js index f0043ef..cddf0e5 100644 --- a/js/component/alert.js +++ b/js/component/alert.js @@ -164,7 +164,7 @@ beestat.component.alert.prototype.decorate_main_ = function(parent) { if (thermostat.temperature_unit === '°C') { if (this.alert_.code === 100000 || this.alert_.code === 100001) { this.alert_.text = this.alert_.text.replace('0.5°F', '0.3°C'); - this.alert_.text = this.alert_.text.replace('1.0°F', '0.8°C'); + this.alert_.text = this.alert_.text.replace('1.0°F', '0.6°C'); } }