There may be a problem with the obscount mechanism not working
for some reason.
my $o = $n->dec_obs;
if ($o <= 0) {
if (my $dxchan = DXChannel::get($n->call)) {
- dbg("ROUTE: disconnecting local pc92 $dxchan->{call} on obscount") if isdbg('route');
+ dbg("disconnecting local pc92 $dxchan->{call} on obscount");
$dxchan->disconnect;
next;
}
my @parents = map {Route::Node::get($_)} $n->parents;
for (@parents) {
if ($_) {
- dbg("ROUTE: deleting pc92 $_->{call} from $n->{call} on obscount") if isdbg('route');
+ dbg("deleting pc92 $_->{call} from $n->{call} on obscount");
push @rdel, $n->del($_);
}
}
$version = '1.54';
$subversion = '0';
-$build = '74';
+$build = '75';
1;