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 b9400f9f40
commit 84c79a55e8

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);