fhem.pl remove dummy-check form Dispatch

git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@4451 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2013-12-24 09:10:26 +00:00
parent 60ac4528f9
commit db1eb7ba7a

View File

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