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

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

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;