mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-22 04:11:16 -05:00
When using EU VHF Contest messages, update the received exchange m_xRcvd only if decoded messages is addressed to me.
This commit is contained in:
parent
5e769f3e85
commit
849e8c7c55
@ -3317,7 +3317,9 @@ void MainWindow::auto_sequence (DecodedText const& message, unsigned start_toler
|
||||
}
|
||||
}
|
||||
bool bEU_VHF_w2=(nrpt>=520001 and nrpt<=594000);
|
||||
if(bEU_VHF_w2) m_xRcvd=message.string().trimmed().right(13);
|
||||
if(bEU_VHF_w2 and message.string().contains(m_config.my_callsign() + " ")) {
|
||||
m_xRcvd=message.string().trimmed().right(13);
|
||||
}
|
||||
if (m_auto
|
||||
&& (m_QSOProgress==REPLYING or (!ui->tx1->isEnabled () and m_QSOProgress==REPORT))
|
||||
&& qAbs (ui->TxFreqSpinBox->value () - df) <= int (stop_tolerance)
|
||||
|
Loading…
Reference in New Issue
Block a user