X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FSpot.pm;h=85678a4dc2cf398ccb2a69fdac5ab4eac1b365f0;hb=4a537d5ee952ce14ac88ebe07e4f015155b576ee;hp=3844e05508e4e77661b8ea3b70e6d9057e8c3929;hpb=dd9bf905904d67616b549091784863d3e34a97ed;p=spider.git diff --git a/perl/Spot.pm b/perl/Spot.pm index 3844e055..85678a4d 100644 --- a/perl/Spot.pm +++ b/perl/Spot.pm @@ -370,14 +370,14 @@ sub dup $text = substr($text, 0, $duplth) if length $text > $duplth; $text = pack("C*", map {$_ & 127} unpack("C*", $text)); $text =~ s/[^a-zA-Z0-9]//g; - my $ldupkey = "X$freq|$call|" . uc $text; - my $sdupkey = "X$freq|$call|$by"; + my $ldupkey = "X$freq|$call|$by|" . uc $text; my $t = DXDupe::find($ldupkey); return 1 if $t && $t - $main::systime > 0; - $t = DXDupe::find($sdupkey); - return 1 if $t && $t - $main::systime > 0; DXDupe::add($ldupkey, $main::systime+$dupage); - DXDupe::add($sdupkey, $main::systime+$dupage); +# my $sdupkey = "X$freq|$call|$by"; +# $t = DXDupe::find($sdupkey); +# return 1 if $t && $t - $main::systime > 0; +# DXDupe::add($sdupkey, $main::systime+$dupage); return 0; }