2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-10 03:06:37 +00:00

fhem.pl: fix autoloading/Matchlist bug (Forum #42936)

git-svn-id: https://svn.fhem.de/fhem/trunk@9695 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2015-10-26 19:19:05 +00:00
parent 949d511755
commit 0dbd7fe823

View File

@ -3262,6 +3262,7 @@ Dispatch($$$)
no strict "refs"; $readingsUpdateDelayTrigger = 1; no strict "refs"; $readingsUpdateDelayTrigger = 1;
@found = &{$modules{$mname}{ParseFn}}($hash,$dmsg); @found = &{$modules{$mname}{ParseFn}}($hash,$dmsg);
use strict "refs"; $readingsUpdateDelayTrigger = 0; use strict "refs"; $readingsUpdateDelayTrigger = 0;
last if(defined($found[0]));
} else { } else {
Log 0, "ERROR: Cannot autoload $mname"; Log 0, "ERROR: Cannot autoload $mname";
} }