2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-03 04:36:36 +00:00

fhem.pl: Fix eventMap 0 Bug (Forum #43023)

git-svn-id: https://svn.fhem.de/fhem/trunk@11048 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2016-03-12 13:19:20 +00:00
parent 1c3d52f2ba
commit 036a63d861

View File

@ -3624,7 +3624,7 @@ ReplaceEventMap2($$$)
$nv = eval '"'.$emh->{$k}.'"';
}
if($nv) {
if(defined($nv)) {
my @arr = split(" ",$nv);
unshift @arr, $dname;
return @arr;