2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-03 04:36:36 +00:00

01_FHEMWEM.pm: do not create an artificial "all" room (Forum #71864)

git-svn-id: https://svn.fhem.de/fhem/trunk@14290 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2017-05-14 19:31:14 +00:00
parent 98cf02a053
commit f2b0f5fbca

View File

@ -1771,8 +1771,8 @@ FW_showRoom()
# array of all device names in the room (exception weblinks without group
# attribute)
my @devs= grep { ($FW_rooms{$FW_room}{$_}||$FW_room eq "all") &&
!IsIgnored($_) } keys %defs;
my @devs= grep { (($FW_rooms{$FW_room} && $FW_rooms{$FW_room}{$_}) ||
$FW_room eq "all") && !IsIgnored($_) } keys %defs;
my (%group, @atEnds, %usuallyAtEnd, %sortIndex);
foreach my $dev (@devs) {
if($modules{$defs{$dev}{TYPE}}{FW_atPageEnd}) {