From 5cfea54b06828b936f4fce9964a6d4f4e23ffebf Mon Sep 17 00:00:00 2001 From: ezcGman Date: Tue, 20 Dec 2022 23:58:11 +0100 Subject: [PATCH] UM SHT: Apply PR feedback --- usermods/sht/usermod_sht.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usermods/sht/usermod_sht.h b/usermods/sht/usermod_sht.h index 652bdfde..9a3a2f4d 100644 --- a/usermods/sht/usermod_sht.h +++ b/usermods/sht/usermod_sht.h @@ -191,7 +191,7 @@ void ShtUsermod::publishHomeAssistantAutodiscovery() { json[F("stat_cla")] = F("measurement"); snprintf_P(buf, 127, PSTR("%s-temperature"), escapedMac.c_str()); json[F("uniq_id")] = buf; - json[F("unit_of_meas")] = F((unitOfTemp ? "°F" : "°C")); + json[F("unit_of_meas")] = unitOfTemp ? F("°F") : F("°C"); appendDeviceToMqttDiscoveryMessage(json); payload_size = serializeJson(json, json_str); snprintf_P(buf, 127, PSTR("homeassistant/sensor/%s/%s-temperature/config"), escapedMac.c_str(), escapedMac.c_str());