mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-08-13 03:02:26 -04:00
Allow CQ messages to be sent to PSK reporters without a grid.
This commit is contained in:
parent
31657834e3
commit
e7dde090bf
@ -4134,7 +4134,7 @@ void MainWindow::pskPost (DecodedText const& decodedtext)
|
|||||||
}
|
}
|
||||||
int snr = decodedtext.snr();
|
int snr = decodedtext.snr();
|
||||||
Frequency frequency = m_freqNominalPeriod + audioFrequency; // prevent spotting wrong band
|
Frequency frequency = m_freqNominalPeriod + audioFrequency; // prevent spotting wrong band
|
||||||
if(grid.contains (grid_regexp)) {
|
if(grid.contains (grid_regexp) || decodedtext.string().contains(" CQ ")) {
|
||||||
// qDebug() << "To PSKreporter:" << deCall << grid << frequency << msgmode << snr;
|
// qDebug() << "To PSKreporter:" << deCall << grid << frequency << msgmode << snr;
|
||||||
if (!m_psk_Reporter.addRemoteStation (deCall, grid, frequency, msgmode, snr))
|
if (!m_psk_Reporter.addRemoteStation (deCall, grid, frequency, msgmode, snr))
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user