2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-24 15:19:21 +00:00

01_FHEMWEB.pm: remove space before newline for devstateicon (Forum #116395)

git-svn-id: https://svn.fhem.de/fhem/trunk@23283 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2020-12-02 22:12:03 +00:00
parent e1057e6d9b
commit 67822adfa1

View File

@ -3239,6 +3239,7 @@ FW_devState($$@)
} else {
my $html = "";
foreach my $state (split("\n", $state)) {
$state =~ s/ *$//;
$txt = $state;
my ($icon, $isHtml);
($icon, $link, $isHtml) = FW_dev2image($d,$state);