X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fshow%2Fdx.pl;h=009b5fa6f24f8147887e8625af40919e6e879a24;hb=b26c5204bc58c12fc4d61725ba4f1cfc1a38be45;hp=daf77a3d87dd0a7a3f13113f78185048db17ed19;hpb=d90ff9fe9682961939e823a0a0cf171e208be58b;p=spider.git diff --git a/cmd/show/dx.pl b/cmd/show/dx.pl index daf77a3d..009b5fa6 100644 --- a/cmd/show/dx.pl +++ b/cmd/show/dx.pl @@ -86,7 +86,7 @@ while ($f = shift @list) { # next field next; } if (lc $f =~ /^filt/) { - $dofilter = 1 if $self->{spotfilter}; + $dofilter = 1 if $self->spotsfilter; next; } if (lc $f eq 'qsl') { @@ -346,10 +346,14 @@ my @res = Spot::search($expr, $fromday, $today, $from, $to, $hint, $dofilter ? $ my $ref; my @dx; foreach $ref (@res) { - if ($real) { - push @out, $self->format_dx_spot(@$ref); + if ($self->ve7cc) { + push @out, VE7CC::dx_spot($self, @$ref); } else { - push @out, Spot::formatl(@$ref); + if ($real) { + push @out, $self->format_dx_spot(@$ref); + } else { + push @out, Spot::formatl(@$ref); + } } }