From 849e8c7c551ac4c64625756c5d3f58709443ee69 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Mon, 18 Nov 2019 14:00:42 -0500 Subject: [PATCH] When using EU VHF Contest messages, update the received exchange m_xRcvd only if decoded messages is addressed to me. --- widgets/mainwindow.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 85d4a0130..9f70724f1 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -3317,7 +3317,9 @@ void MainWindow::auto_sequence (DecodedText const& message, unsigned start_toler } } bool bEU_VHF_w2=(nrpt>=520001 and nrpt<=594000); - if(bEU_VHF_w2) m_xRcvd=message.string().trimmed().right(13); + if(bEU_VHF_w2 and message.string().contains(m_config.my_callsign() + " ")) { + m_xRcvd=message.string().trimmed().right(13); + } if (m_auto && (m_QSOProgress==REPLYING or (!ui->tx1->isEnabled () and m_QSOProgress==REPORT)) && qAbs (ui->TxFreqSpinBox->value () - df) <= int (stop_tolerance)