X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fshow%2Fdx.pl;h=009b5fa6f24f8147887e8625af40919e6e879a24;hb=b26c5204bc58c12fc4d61725ba4f1cfc1a38be45;hp=f28ae1a4d7df6235498dedd90d1cf5d7c5c279fe;hpb=a5d541aa69bd39091bde0ed3d2cb67022aaa2ab3;p=spider.git diff --git a/cmd/show/dx.pl b/cmd/show/dx.pl index f28ae1a4..009b5fa6 100644 --- a/cmd/show/dx.pl +++ b/cmd/show/dx.pl @@ -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); + } } }