2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 12:49:34 +00:00

fhem.pl: fix deleteattr event (Forum #121474)

git-svn-id: https://svn.fhem.de/fhem/trunk@24589 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2021-06-05 09:28:01 +00:00
parent 18c5f7d266
commit dcc3cc06f9

View File

@ -2379,7 +2379,7 @@ CommandDeleteAttr($$)
}
addStructChange("deleteAttr", $sdev, join(" ", @a));
DoTrigger("global", "DELETEATTR $sdev ".join(" ",@a), 1) if($init_done);
DoTrigger("global", "DELETEATTR ".join(" ",@a), 1) if($init_done);
}