mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-05-01 20:20:10 +00:00
98_structure.pm: ignore disabled devices when conputing the state (Forum #95526)
git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@18182 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
dbba09147a
commit
768258d845
@ -236,7 +236,7 @@ structure_Notify($$)
|
||||
my $devstate;
|
||||
|
||||
foreach my $d (sort keys %{ $hash->{".memberHash"} }) {
|
||||
next if(!$defs{$d});
|
||||
next if(!$defs{$d} || IsDisabled($d));
|
||||
|
||||
if($attr{$d} && $attr{$d}{$devmap}) {
|
||||
my @gruppe = attrSplit($attr{$d}{$devmap});
|
||||
|
Loading…
x
Reference in New Issue
Block a user