Skip to content

Commit c5f1b1a

Browse files
committed
Fixed #812 - Imported QSOs contain incorrect My DXCC info
1 parent d9b3d3f commit c5f1b1a

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

Changelog

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ TBC - 0.46.2
66
- Fixed Statistics - Anti-meridian bug on map (issue #786)
77
- Fixed Binary file in the tarballs (issue #794)
88
- Fixed LOTW & eQSL upload status updated even when nothing is uploaded (issue #807)
9+
- Fixed Imported QSOs contain incorrect My DXCC info (issue #812)
910
- Fixed Statistics Dialog does not show confirmed grids
1011

1112
2025/09/26 - 0.46.1

core/LOVDownloader.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ public slots:
106106
7)}
107107
};
108108

109+
109110
QNetworkAccessManager* nam;
110111
QNetworkReply *currentReply;
111112
bool abortRequested;

logformat/LogFormat.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,7 @@ unsigned long LogFormat::runImport(QTextStream& importLogStream,
623623
}
624624
else
625625
{
626-
const DxccEntity &myEntity = ( recordMyDXCCId != 0 ) ? Data::instance()->lookupDxccID(recordDXCCId)
626+
const DxccEntity &myEntity = ( recordMyDXCCId != 0 ) ? Data::instance()->lookupDxccID(recordMyDXCCId)
627627
: Data::instance()->lookupDxcc(myCallString);
628628

629629
if ( myEntity.dxcc == 0 ) // My DXCC not found

0 commit comments

Comments
 (0)