mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-25 05:38:46 -05:00
Prevent self spotting when running multiple instances
This commit is contained in:
parent
b68e90ae88
commit
96974e0537
@ -3709,7 +3709,8 @@ void MainWindow::auto_sequence (DecodedText const& message, unsigned start_toler
|
|||||||
|
|
||||||
void MainWindow::pskPost (DecodedText const& decodedtext)
|
void MainWindow::pskPost (DecodedText const& decodedtext)
|
||||||
{
|
{
|
||||||
if (m_diskData || !m_config.spot_to_psk_reporter() || decodedtext.isLowConfidence ()) return;
|
if (m_diskData || !m_config.spot_to_psk_reporter() || decodedtext.isLowConfidence ()
|
||||||
|
|| (decodedtext.string().contains(m_baseCall) && dec_data.params.mygrid)) return; // prevent self spotting when running multiple instances
|
||||||
|
|
||||||
QString msgmode=m_mode;
|
QString msgmode=m_mode;
|
||||||
QString deCall;
|
QString deCall;
|
||||||
|
Loading…
Reference in New Issue
Block a user