From 9c256427acb1c014e1e39b255981e1ec1e6f0c91 Mon Sep 17 00:00:00 2001 From: justme1968 Date: Mon, 19 Dec 2016 20:24:00 +0000 Subject: [PATCH] 31_HUEDevice.pm: correct group icon name. forum https://forum.fhem.de/index.php/topic,11020.msg543212.html#msg543212 git-svn-id: https://svn.fhem.de/fhem/trunk@12836 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/FHEM/31_HUEDevice.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/fhem/FHEM/31_HUEDevice.pm b/fhem/FHEM/31_HUEDevice.pm index 27828268c..d4d8ec849 100644 --- a/fhem/FHEM/31_HUEDevice.pm +++ b/fhem/FHEM/31_HUEDevice.pm @@ -1041,6 +1041,7 @@ HUEDeviceSetIcon($;$) $attr{$name}{icon} = $icon; } elsif( $hash->{class} ) { my $class = lc( $hash->{class} ); + $class ~= s/ room//; $attr{$name}{icon} = "hue_room_$class"; }