Another attempt to get m_rptRcvd logged correctly in special circumstances.

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8592 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Joe Taylor 2018-03-30 19:28:30 +00:00
parent 7620590689
commit 0aa3a45514
1 changed files with 4 additions and 2 deletions

View File

@ -3020,8 +3020,10 @@ void MainWindow::readFromStdout() //readFromStdout
QString deCall;
QString grid;
decodedtext.deCallAndGrid(/*out*/deCall,grid);
if(Radio::base_callsign(ui->dxCallEntry->text())==deCall and
rpt!="") m_rptRcvd=rpt;
{
QString t=Radio::base_callsign(ui->dxCallEntry->text());
if((t==deCall or t=="") 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);