2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-21 14:04:15 +00:00

autocreate: changed to CommandAttr from direct hash assignment

git-svn-id: https://svn.fhem.de/fhem/trunk@4234 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2013-11-17 10:19:41 +00:00
parent 4297091a0f
commit df6af3ea3d

View File

@ -186,7 +186,7 @@ autocreate_Notify($$)
if($devattr) {
foreach my $attrNV (split(" ", $devattr)) {
my ($an, $av) = split(":", $attrNV, 2);
$attr{$name}{$an} = $av;
CommandAttr(undef, "$name $an $av");
}
}