From: minima Date: Mon, 7 Nov 2005 10:13:25 +0000 (+0000) Subject: fix spot filtering where we are looking for US states but there ain't any. X-Git-Tag: 1.54~188 X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?p=spider.git;a=commitdiff_plain;h=7cc498cbcff1c351c3780782822c1402ab634b81 fix spot filtering where we are looking for US states but there ain't any. --- diff --git a/Changes b/Changes index 5a4b2a4c..78bc3c51 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,6 @@ +07Nov05======================================================================= +1. Fix warnings on filtering spots where the filter was looking at US states +and there is no US state in the spot. 01Nov05======================================================================= 1. add log2csv.pl for printing out logfiles 25Oct05======================================================================= diff --git a/perl/Spot.pm b/perl/Spot.pm index 8972447b..d14e310e 100644 --- a/perl/Spot.pm +++ b/perl/Spot.pm @@ -209,6 +209,9 @@ sub search my \@a = (Prefix::cty_data(\$s[1]))[1..3]; my \@b = (Prefix::cty_data(\$s[4]))[1..3]; push \@s, \@a[0,1], \@b[0,1], \$a[2], \$a[2]; + } else { + \$s[12] ||= ' '; + \$s[13] ||= ' '; } my (\$filter, \$hops) = \$dxchan->{spotsfilter}->it(\@s); next unless (\$filter);