X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FRBN.pm;h=ec9f39467942ef2014557938a393f44482068164;hb=654e240acb579ce6d726076a8a2c5ea4b9658f6e;hp=0b3dfe5a937dc245c9b67958476212a9610d7664;hpb=7ab06733bff9df3779a4082b5863a6273b5373d7;p=spider.git diff --git a/perl/RBN.pm b/perl/RBN.pm index 0b3dfe5a..ec9f3946 100644 --- a/perl/RBN.pm +++ b/perl/RBN.pm @@ -252,7 +252,12 @@ sub normal } # remove all extraneous crap from the origin - just leave the base callsign - $origin = basecall($origin); + my $norigin = basecall($origin); + unless ($norigin) { + dbg("RBN: ERROR '$origin' is an invalid callsign, dumped"); + return; + } + $origin = $norigin; # is this callsign in badspotter list? if ($DXProt::badspotter->in($origin) || $DXProt::badnode->in($origin)) { @@ -261,7 +266,7 @@ sub normal } # is the qrg valid - unless ($qrg =~ /^\d+\.\d{1,2}$/) { + unless ($qrg =~ /^\d+\.\d{1,3}$/) { dbg("RBN: ERROR qrg $qrg from $origin invalid, dumped"); return; } @@ -535,8 +540,9 @@ sub dx_spot unless ($user->qra && is_qra($user->qra)) { $user->qra($qra); dbg("RBN: update qra on $saver->[SCall] to $qra"); - $user->put; } + # update lastseen if nothing else + $user->put; } } }