X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FSpot.pm;h=9f5c8645511711919943fc6564b239f59918bbda;hb=22df46c61d3f1ae4115224bcc230ffe7ed6aff99;hp=5c0ce792d673124343e9274b4460eae068969bae;hpb=7cf8fad46075f1ca2b8b30475a26a881c031a0ad;p=spider.git diff --git a/perl/Spot.pm b/perl/Spot.pm index 5c0ce792..9f5c8645 100644 --- a/perl/Spot.pm +++ b/perl/Spot.pm @@ -323,6 +323,11 @@ sub dup $freq = sprintf "%.1f", $freq; # normalise frequency $call = substr($call, 0, 12) if length $call > 12; + + # quick test now for simple case + my $sdupkey = "X$freq|$call|$d|$by"; + return 1 if DXDupe::find($sdupkey); + chomp $text; $text =~ s/\%([0-9A-F][0-9A-F])/chr(hex($1))/eg; $text = substr($text, 0, $duplth) if length $text > $duplth; @@ -336,7 +341,7 @@ sub dup return 1 if DXDupe::find($ldupkey) || DXDupe::find($sdupkey); } my $ldupkey = "X$freq|$call|$d|\L$text"; - my $sdupkey = "X$freq|$call|$d|$by"; + $sdupkey = "X$freq|$call|$d|$by"; DXDupe::add($ldupkey, $main::systime+$dupage); DXDupe::add($sdupkey, $main::systime+$dupage); return 0;