sort out the mess from the last changes
[spider.git] / perl / DXProt.pm
index 3ec113276691965301e3ed6f536c2da33cfb9822..ccb183c3691b89a41f05bed5e36f7b7200a0c4e7 100644 (file)
@@ -772,7 +772,7 @@ sub send_pc92_config
 
        # send 'my' configuration for all users and pc92 capable nodes
        my @dxchan = grep { $_->call ne $main::mycall && $_ != $self && !$_->{isolate} } DXChannel::get_all();
-       my @localnodes = map { my $r = Route::Node::get($_->{call}); $r ? $r : () } @dxchan;
+       my @localnodes = map { my $r = Route::get($_->{call}); $r ? $r : () } @dxchan;
 #      push @localnodes, map { my $r = Route::Node::get($_->{call}); $r ? $r : () } DXChannel::get_all_users();
        $self->send_route_pc92($main::mycall, \&pc92c, (scalar @localnodes)+1, $main::routeroot, @localnodes);