From ce0a92c123b6958207ddf2cd030c230fee488ae8 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Fri, 29 Dec 2017 18:26:10 +0000 Subject: [PATCH] Allow for possible "a3", etc., at end of lines decoded by Hound. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8381 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 4c13c93a8..d985f8e12 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -2942,7 +2942,7 @@ void MainWindow::readFromStdout() //readFromStdout } else { QStringList w=decodedtext.string().mid(24).split(" ",QString::SkipEmptyParts); if(decodedtext.string().contains("/")) w.append(" +00"); //Add a dummy report - if(w.size()==3) { + if(w.size()>=3) { QString foxCall=w.at(1); if(w.at(0)==m_config.my_callsign()) { if(w.at(2)=="RR73") { @@ -7364,7 +7364,7 @@ void MainWindow::foxRxSequencer(QString msg, QString houndCall, QString rptRcvd) */ m_foxQSO[houndCall].rcvd=rptRcvd.mid(1); //Save Fox's report for the log - m_foxRR73Queue.enqueue(houndCall); //Request RR73 to be sent to houndCall + m_foxRR73Queue.enqueue(houndCall); //Request RR73 to be sent to Hound writeFoxQSO(" " + msg.trimmed()); }