X-Git-Url: http://www.dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FDXCommandmode.pm;h=e49498574415692f7543d95cf89e5c6050db791d;hb=022706c9f44ade7f23fcfa76efcdcd61c98829a7;hp=5c3699a38190c25f37b6c9d168e6d58ec83080a3;hpb=d1eb4229b58aeb5f5fe1095a500cfa2bb4e83f88;p=spider.git diff --git a/perl/DXCommandmode.pm b/perl/DXCommandmode.pm index 5c3699a3..e4949857 100644 --- a/perl/DXCommandmode.pm +++ b/perl/DXCommandmode.pm @@ -829,16 +829,17 @@ sub format_dx_spot my $self = shift; my $t = ztime($_[2]); - my $loc; + my $loc = ''; my $clth = $self->{consort} eq 'local' ? 29 : 30; my $comment = substr $_[3], 0, $clth; $comment .= ' ' x ($clth - length($comment)); - my $ref = DXUser->get_current($_[4]); - if ($ref) { - $loc = $ref->qra || '' if $self->{user}->wantgrid; - $loc = ' ' . substr($loc, 0, 4) if $loc; - } - $loc = "" unless $loc; + if ($self->{user}->wantgrid) { + my $ref = DXUser->get_current($_[4]); + if ($ref) { + $loc = $ref->qra || ''; + $loc = ' ' . substr($loc, 0, 4) if $loc; + } + } if ($self->{user}->wantdxitu) { $loc = ' ' . sprintf("%2d", $_[10]) if defined $_[10];