firmware: fix temp high alert compile check

This commit is contained in:
2026-06-11 00:55:08 -06:00
parent 7033b8d7e9
commit ff4a103436
@@ -2364,7 +2364,7 @@ void buildStatusDocument(JsonDocument& doc) {
temp["temperature_f"] = sensors.tempsF[i];
temp["high_alert"] =
appConfig.tempSensors[i].highAlertEnabled &&
sensors.tempOnline[i] &&
sensors.tempsF[i] > -100.0 &&
sensors.tempsF[i] > appConfig.tempSensors[i].highAlertF;
} else {
temp["temperature_f"] = nullptr;