diff --git a/FHEM/01_FHEMWEB.pm b/FHEM/01_FHEMWEB.pm index 1cd3c4cbc..052ffd9a6 100755 --- a/FHEM/01_FHEMWEB.pm +++ b/FHEM/01_FHEMWEB.pm @@ -2494,9 +2494,7 @@ FW_devState($$) $txt = $v if(defined($v)); } elsif($allSets =~ m/\bdesired-temp:/) { - $txt = ReadingsVal($d, "measured-temp", ""); - $txt =~ s/ .*//; - $txt .= "°C"; + $txt = "$1 °C" if($txt =~ m/^measured-temp: (.*)/); # FHT fix $cmdList = "desired-temp" if(!$cmdList); } elsif($allSets =~ m/\bdesiredTemperature:/) {