From 37cc86a709ee8b2642c7224c7f6777b66124779d Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Fri, 1 Sep 2017 23:28:44 +0000 Subject: [PATCH] Fix erroneous auto stop critera for auto reply in FT8 We cannot assume that a "DE " is or is not for us so we must continue calling and risk possible QRM. Calling split avoids this issue. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8066 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/mainwindow.cpp b/mainwindow.cpp index 530cfb118..5fa713602 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -2807,6 +2807,7 @@ void MainWindow::auto_sequence (DecodedText const& message, unsigned start_toler && (REPLYING == m_QSOProgress || (!ui->tx1->isEnabled () && REPORT == m_QSOProgress)) && qAbs (ui->TxFreqSpinBox->value () - df) <= int (stop_tolerance) + && message_words.at (1) != "DE" && !message_words.at (1).contains (QRegularExpression {"(^(CQ|QRZ))|" + m_baseCall}) && message_words.at (2).contains (Radio::base_callsign (ui->dxCallEntry->text ()))) { // auto stop to avoid accidental QRM