5. fix talkmode so that it only does 'via' PC10s when it really needs to.
[spider.git] / perl / AnnTalk.pm
index b082c38531bd0f77707129db1ac37b2250e62a86..5bd44fd49e3104de3bcdec7a4bf9904147b0c433 100644 (file)
@@ -30,7 +30,7 @@ sub dup
        $text = substr($text, 0, $duplth) if length $text > $duplth; 
        my $dupkey = "$call|$to|$text";
        return 1 if exists $dup{$dupkey};
-       $dup{$dupkey} = $d * 60;         # in seconds (to the nearest minute)
+       $dup{$dupkey} = $d;         # in seconds (to the nearest minute)
        return 0; 
 }
 
@@ -53,5 +53,6 @@ sub listdups
        return @out;
 }
 
+
 1;