try fix node type changes from outside
[spider.git] / cmd / set / clx.pl
index f27174add4d6540120e066d9adb781fa209f4ff8..38c02dcd096ec018793ccaac13406db551ac7ff2 100644 (file)
@@ -19,11 +19,19 @@ return (1, $self->msg('e5')) if $self->priv < 5;
 
 foreach $call (@args) {
        $call = uc $call;
+       if ($call eq $main::mycall) {
+               push @out, $self->msg('e11', $call);
+               next;
+       }
+       if ($call eq $main::myalias) {
+               push @out, $self->msg('e11', $call);
+               next;
+       }
        my $chan = DXChannel::get($call);
        if ($chan) {
                push @out, $self->msg('nodee1', $call);
        } else {
-               $user = DXUser->get($call);
+               $user = DXUser::get($call);
                $create = !$user;
                $user = DXUser->new($call) if $create;
                if ($user) {