From 68e03f6c4e879157a3d2af6ede805311cdf1ce51 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Mon, 3 Oct 2016 22:52:01 +0000 Subject: [PATCH] Another attempt to get both m_rptRcvd sent to log and valid spot sent to PSKreporter. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7147 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 0aa26db4b..96b75403c 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -1308,9 +1308,9 @@ void MainWindow::fastSink(qint64 frames) writeAllTxt(message); } - decodedtext=message.mid(0,4) + message.mid(6,-1); bool stdMsg = decodedtext.report(m_baseCall, Radio::base_callsign(ui->dxCallEntry->text()),m_rptRcvd); + decodedtext=message.mid(0,4) + message.mid(6,-1); if(m_config.spot_to_psk_reporter() and stdMsg and !m_diskData) pskPost(decodedtext); }