fix all DXChannel->get to ::get
[spider.git] / cmd / links.pl
index 68e2d044c7b67c079004e6550462a0c7960b44ec..1289211edef34a7df6785201c753c9c3cdfac0d5 100644 (file)
@@ -18,7 +18,7 @@ my $nowt = time;
 push @out, "                                      Ave   Obs   Ping   Sec Since";
 push @out, "  Callsign Type Started               RTT  count  Int.   Last Ping";
 
-foreach $dxchan ( sort {$a->call cmp $b->call} DXChannel::get_all() ) {
+foreach $dxchan ( sort {$a->call cmp $b->call} grep {$_->is_node || $_->is_aranea} DXChannel::get_all() ) {
        next if $dxchan->is_user;
        my $call = $dxchan->call();
        next if $dxchan == $main::me;