Browse Source

ADIF import, actively ignore freq_rx tag.

master
DF6FR 14 years ago
parent
commit
5a916c6240
  1. 6
      yfksubs.pl

6
yfksubs.pl

@ -3335,6 +3335,9 @@ for my $i ( 0 .. $#qso ) { # iterate through Array of Hashes
if (defined($qso[$i]{'freq'})) {
delete $qso[$i]{'freq'};
}
if (defined($qso[$i]{'freq_rx'})) {
delete $qso[$i]{'freq_rx'};
}
}
# if there is a frequency tag instead of band, the band has to be
@ -3369,6 +3372,9 @@ for my $i ( 0 .. $#qso ) { # iterate through Array of Hashes
}
delete $qso[$i]{'freq'}; # don't need it anymore
if (defined($qso[$i]{'freq_rx'})) {
delete $qso[$i]{'freq_rx'};
}
}
# RST_RCVD and RST_SENT will be renamed to rstr and rsts

Loading…
Cancel
Save