2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-10 09:16:53 +00:00

fhem.pl remove dummy-check form Dispatch

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

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