mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-03-21 19:48:54 -04:00
Merge branch 'develop' of bitbucket.org:k1jt/wsjtx into develop
This commit is contained in:
commit
0493d03485
@ -4164,7 +4164,8 @@ void MainWindow::readFromStdout() //readFromStdout
|
||||
hound_reply ();
|
||||
}
|
||||
} else {
|
||||
QStringList w=decodedtext.string().replace("<","").replace(">","").mid(24).split(" ",SkipEmptyParts); // .replace("<","").replace(">","") is needed for MSHV multistream messages
|
||||
QString text = decodedtext.string().replace("<","").replace(">",""); // needed for MSHV multistream messages
|
||||
QStringList w=text.mid(24).split(" ",SkipEmptyParts);
|
||||
if(decodedtext.string().contains("/")) w.append(" +00"); //Add a dummy report
|
||||
if(w.size()>=3) {
|
||||
QString foxCall=w.at(1);
|
||||
@ -4179,7 +4180,8 @@ void MainWindow::readFromStdout() //readFromStdout
|
||||
m_rptRcvd=w.at(2);
|
||||
m_rptSent=decodedtext.string().mid(7,3);
|
||||
m_nFoxFreq=decodedtext.string().mid(16,4).toInt();
|
||||
hound_reply ();
|
||||
} else {
|
||||
if (text.contains(m_config.my_callsign() + " " + m_hisCall) && !text.contains("73 ")) processMessage(decodedtext0); // needed for MSHV multistream messages
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user