Skip to content

Commit

Permalink
ADIF: Callsign import always upper
Browse files Browse the repository at this point in the history
  • Loading branch information
foldynl committed Jun 4, 2024
1 parent e1f4071 commit eed4a4d
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 @@ -274,7 +274,7 @@ void AdiFormat::contactFields2SQLRecord(QMap<QString, QVariant> &contact, QSqlRe
{
FCT_IDENTIFICATION;

record.setValue("callsign", contact.take("call"));
record.setValue("callsign", contact.take("call").toString().toUpper());
record.setValue("rst_rcvd", contact.take("rst_rcvd"));
record.setValue("rst_sent", contact.take("rst_sent"));
record.setValue("gridsquare", contact.take("gridsquare").toString().toUpper());
Expand Down

0 comments on commit eed4a4d

Please sign in to comment.