From c3d33ee2ca82279fe3244c4cf43b0ff6ff2b41a1 Mon Sep 17 00:00:00 2001 From: rudolfkoenig Date: Tue, 24 Dec 2013 09:10:26 +0000 Subject: [PATCH] fhem.pl remove dummy-check form Dispatch git-svn-id: svn://svn.code.sf.net/p/fhem/code/trunk@4451 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/fhem.pl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/fhem/fhem.pl b/fhem/fhem.pl index ada9cfa81..adbb1bfdf 100755 --- a/fhem/fhem.pl +++ b/fhem/fhem.pl @@ -2745,7 +2745,7 @@ HandleArchiving($) ##################################### # Call a logical device (FS20) ParseMessage with data from a physical device -# (FHZ) +# (FHZ). Note: $hash may be dummy, used by FHEM2FHEM sub Dispatch($$$) { @@ -2753,7 +2753,6 @@ Dispatch($$$) my $module = $modules{$hash->{TYPE}}; my $name = $hash->{NAME}; - return if(IsDummy($name)); Log3 $hash, 5, "$name dispatch $dmsg"; my ($isdup, $idx) = CheckDuplicate($name, $dmsg, $module->{FingerprintFn});