mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-02-25 03:44:52 +00:00
fhem.pl: Fix the FS20V-fix (Forum #130952)
git-svn-id: https://svn.fhem.de/fhem/trunk@26868 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
6c35b1fad5
commit
dbfaa1dcd4
@ -4192,8 +4192,8 @@ Dispatch($$;$$)
|
||||
if(defined($h)) {
|
||||
foreach my $m (sort keys %{$h}) {
|
||||
my ($order, $mname) = split(":", $m);
|
||||
next if(!$modules{$mname} ||
|
||||
!$modules{$mname}{LOADED}); # checked in the loop above, #125292
|
||||
next if(!$modules{$mname} || # #130952 / FS20V
|
||||
$modules{$mname}{LOADED}); # checked in the loop above, #125292
|
||||
if($dmsg =~ m/$h->{$m}/s) {
|
||||
if(AttrVal("global", "autoload_undefined_devices", 1)) {
|
||||
my $newm = LoadModule($mname);
|
||||
|
Loading…
x
Reference in New Issue
Block a user