# and are not themselves isolated, this to make sure that isolated nodes
# don't appear outside of this node
@nodes = DXNode::get_all();
- @nodes = grep { $_->dxchan != $self && !$_->dxchan->{isolate} } @nodes;
+ @nodes = grep { $_->dxchan != $self } @nodes;
+ @nodes = grep { !($_->dxchan && $_->dxchan->isolate) } @nodes;
}
my @s = $me->pc19(@nodes);