From 84c79a55e8949c8bb952fef585cb15bbe309241a Mon Sep 17 00:00:00 2001 From: rudolfkoenig Date: Mon, 25 Jan 2021 09:34:42 +0000 Subject: [PATCH] fhem.pl: fix typo from clientOrder fix (Forum #117737) git-svn-id: https://svn.fhem.de/fhem/trunk@23613 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/fhem.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fhem/fhem.pl b/fhem/fhem.pl index 551dac502..da973daa7 100755 --- a/fhem/fhem.pl +++ b/fhem/fhem.pl @@ -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);