Browse Source

fix finding lotw stations locations

master
Fabian Kurz 4 years ago
parent
commit
c72c8a6a2e
  1. 2
      yfk
  2. 2
      yfksubs.pl

2
yfk

@ -1237,7 +1237,7 @@ while (($status == 7) || ($status == 14)) {
my @lotwlocations = &getlotwlocations();
if ($#lotwlocations) {
if (length(@lotwlocations)) {
addstr($whelp, 0,0, 'LoTW upload...'.' 'x50);
refresh($whelp);
addstr($wmain,12,17,"Select station location for signing with tqsl!");

2
yfksubs.pl

@ -6168,7 +6168,7 @@ sub getlotwlocations {
my @ret;
foreach (@a) {
if ($_ =~ /$mycall:(.*)/i) {
if ($_ =~ /^$mycall:(.*)/i) {
push @ret, $1;
}
}

Loading…
Cancel
Save