Skip to content

Commit eed4a4d

Browse files
committed
ADIF: Callsign import always upper
1 parent e1f4071 commit eed4a4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: logformat/AdiFormat.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ void AdiFormat::contactFields2SQLRecord(QMap<QString, QVariant> &contact, QSqlRe
274274
{
275275
FCT_IDENTIFICATION;
276276

277-
record.setValue("callsign", contact.take("call"));
277+
record.setValue("callsign", contact.take("call").toString().toUpper());
278278
record.setValue("rst_rcvd", contact.take("rst_rcvd"));
279279
record.setValue("rst_sent", contact.take("rst_sent"));
280280
record.setValue("gridsquare", contact.take("gridsquare").toString().toUpper());

0 commit comments

Comments
 (0)