small HomeMatic change

git-svn-id: https://fhem.svn.sourceforge.net/svnroot/fhem/trunk/fhem@859 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig
2011-03-13 08:47:19 +00:00
parent df33167b0a
commit 020a16b1c7

View File

@@ -494,9 +494,7 @@ FW_updateHashes()
%FW_types = (); %FW_types = ();
foreach my $d (sort keys %defs ) { foreach my $d (sort keys %defs ) {
next if(IsIgnored($d)); next if(IsIgnored($d));
my $t = $defs{$d}{TYPE}; my $t = AttrVal($d, "subType", $defs{$d}{TYPE});
my $st = AttrVal($d, "subType", undef);
$t .= ":$st" if($st);
$FW_types{$t}{$d} = 1; $FW_types{$t}{$d} = 1;
} }