X-Git-Url: http://dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fdx.pl;h=7ab6cce2e4d27ae2422cced80993092381f497d1;hb=526e7127d7eb6d8e2f2a4cffd782c4c87f0d1742;hp=02fc3ca448604706d3ecd06996027faf155bfe24;hpb=5f2487385b59dbe88dc763fa9c26fe5a9b4a6b30;p=spider.git diff --git a/cmd/dx.pl b/cmd/dx.pl index 02fc3ca4..7ab6cce2 100644 --- a/cmd/dx.pl +++ b/cmd/dx.pl @@ -104,8 +104,9 @@ return (1, @out) unless $valid; # Store it here (but only if it isn't baddx) my $t = (int ($main::systime/60)) * 60; -return (1, $self->msg('dup')) if Spot::dup($freq, $spotted, $t, $line, $spotter); my @spot = Spot::prepare($freq, $spotted, $t, $line, $spotter, $main::mycall); +my $thing = Thingy::Dx->new(user=>$spotter); +$thing->from_DXProt(spotdata=>\@spot); if ($DXProt::baddx->in($spotted) || $freq =~ /^69/ || $localonly) { @@ -113,19 +114,10 @@ if ($DXProt::baddx->in($spotted) || $freq =~ /^69/ || $localonly) { if ($freq =~ /^69/) { $self->badcount(($self->badcount||0) + 1); } - - $self->dx_spot(undef, undef, @spot); - return (1); } else { - if (@spot) { - # store it - Spot::add(@spot); - - # send orf to the users - DXProt::send_dx_spot($self, DXProt::pc11($spotter, $freq, $spotted, $line), @spot); - } + $thing->queue($self); } - +push @out, $thing->gen_DXCommandmode($self); return (1, @out);