Correct the handling of m_rptRcvd, on its way to the log.

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8591 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Joe Taylor 2018-03-29 18:38:44 +00:00
parent 4f6e71a842
commit 7620590689

View File

@ -3020,7 +3020,8 @@ void MainWindow::readFromStdout() //readFromStdout
QString deCall;
QString grid;
decodedtext.deCallAndGrid(/*out*/deCall,grid);
if(Radio::base_callsign(ui->dxCallEntry->text())==deCall) m_rptRcvd=rpt;
if(Radio::base_callsign(ui->dxCallEntry->text())==deCall and
rpt!="") m_rptRcvd=rpt;
// extract details and send to PSKreporter
int nsec=QDateTime::currentMSecsSinceEpoch()/1000-m_secBandChanged;
bool okToPost=(nsec>(4*m_TRperiod)/5);