Bugfix: Error message in inform when multi-channel hm device is created

git-svn-id: https://fhem.svn.sourceforge.net/svnroot/fhem/trunk/fhem@1177 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig
2012-01-07 09:00:32 +00:00
parent 24437a97bc
commit 8be181ebad

View File

@@ -2124,6 +2124,7 @@ DoTrigger($$)
################ ################
# Inform # Inform
if($defs{$dev}{CHANGED}) { # It gets deleted sometimes (?)
$max = int(@{$defs{$dev}{CHANGED}}); # can be enriched in the notifies $max = int(@{$defs{$dev}{CHANGED}}); # can be enriched in the notifies
foreach my $c (keys %client) { # Do client loop first, is cheaper foreach my $c (keys %client) { # Do client loop first, is cheaper
next if(!$client{$c}{inform} || $client{$c}{inform} eq "raw"); next if(!$client{$c}{inform} || $client{$c}{inform} eq "raw");
@@ -2141,6 +2142,7 @@ DoTrigger($$)
"$defs{$dev}{TYPE} $dev $state\n"); "$defs{$dev}{TYPE} $dev $state\n");
} }
} }
}
#################### ####################