reduce the (default) length of announces to dupe

This commit is contained in:
Dirk Koopman 2007-09-12 22:05:45 +01:00
parent 11d4503c67
commit da2c51a552
3 changed files with 3 additions and 4 deletions

View File

@ -17,8 +17,8 @@ use DXVars;
use vars qw(%dup $duplth $dupage $filterdef);
$duplth = 60; # the length of text to use in the deduping
$dupage = 5*3600; # the length of time to hold ann dups
$duplth = 30; # the length of text to use in the deduping
$dupage = 5*3600; # the length of time to hold ann dups
$filterdef = bless ([
# tag, sort, field, priv, special parser
['by', 'c', 0],

View File

@ -480,7 +480,6 @@ sub process
dbg("ROUTE: pc92 broadcast candidate: $dxchan->{call}") if isdbg('obscount');
if ($dxchan == $main::me || !$dxchan->{do_pc9x}) {
$dxchan->broadcast_pc92_update($dxchan->{call});
$last_pc92_slug = 0 if $dxchan == $main::me;
}
}
}

View File

@ -11,6 +11,6 @@ use vars qw($version $subversion $build);
$version = '1.54';
$subversion = '0';
$build = '138';
$build = '139';
1;