2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-05-05 02:19:31 +00:00

fhem.pl: fix typo from clientOrder fix (Forum #117737)

git-svn-id: https://svn.fhem.de/fhem/trunk@23613 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2021-01-25 09:34:42 +00:00
parent 0b14e8da8f
commit ebcba86459

View File

@ -4002,8 +4002,8 @@ Dispatch($$;$$)
$clientArray = computeClientArray($hash, $module) if(!$clientArray);
foreach my $m (@{$clientArray}) {
# Module is not loaded or the message is not for this module
next if(!$dmsg !~ m/$modules{$m}{Match}/s);
# The message is not for this module
next if($dmsg !~ m/$modules{$m}{Match}/s);
if( my $ffn = $modules{$m}{FingerprintFn} ) {
($isdup, $idx) = CheckDuplicate($name, $dmsg, $ffn);