2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-06 06:08:44 +00:00

10_ZWave.pm: versionClass patch from Christian (Forum #50090)

git-svn-id: https://svn.fhem.de/fhem/trunk@11027 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2016-03-08 08:11:38 +00:00
parent 729305ac7b
commit 677c395182

View File

@ -1619,7 +1619,8 @@ ZWave_versionClassAllGet($@)
if(!$data) { # called by the user
delete($hash->{CL});
foreach my $c (sort split(" ", AttrVal($name, "classes", ""))) {
my %h = map { $_=>1 } split(" ", AttrVal($name, "classes", ""));
foreach my $c (sort keys %h) {
next if($c eq "MARK");
ZWave_Get($hash, $name, "versionClass", $c);
}