diff --git a/fhem/fhem.pl b/fhem/fhem.pl index b8088abaa..147bbdad5 100755 --- a/fhem/fhem.pl +++ b/fhem/fhem.pl @@ -3882,7 +3882,7 @@ CallFn(@) return undef; } my $fn = $modules{$defs{$d}{TYPE}}{$n}; - return "" if(!$fn); + return "" if(!$fn || $defs{$d}{"disable$n"}); #121631 if(wantarray) { no strict "refs"; my @ret = &{$fn}(@_);