2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-13 05:06:35 +00:00

small HomeMatic change

git-svn-id: https://svn.fhem.de/fhem/trunk@859 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2011-03-13 08:47:19 +00:00
parent 980f9b8720
commit 6c476fcad8

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;
} }