Skip to content

Commit

Permalink
Fixed #67 - Remove calls toUpper for ADIF fields where it is not need…
Browse files Browse the repository at this point in the history
…ed (2)
  • Loading branch information
foldynl committed May 26, 2022
1 parent a5c782d commit 78867ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion logformat/AdiFormat.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ bool AdiFormat::importNext(QSqlRecord& record) {
record.setValue("qsl_sent_via",contact.take("qsl_sent_via"));
record.setValue("qsl_via",contact.take("qsl_via"));
record.setValue("qso_complete",contact.take("qso_complete"));
record.setValue("qso_random",contact.take("qso_random").toString().toUpper());
record.setValue("qso_random",contact.take("qso_random").toString());
record.setValue("region",contact.take("region"));
record.setValue("rx_pwr",contact.take("rx_pwr"));
record.setValue("sat_mode",contact.take("sat_mode"));
Expand Down

0 comments on commit 78867ba

Please sign in to comment.