fix typo
[spider.git] / perl / Spot.pm
index 61bc1a25959424bce67ced5ee6a37660e949ccb7..fee2c15b0af48cc32acadc3aee05888f339882e5 100644 (file)
@@ -337,14 +337,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;      
+       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;
 }