From 54709bdcaf45a747748d98f8e8b8a8e8340c8d16 Mon Sep 17 00:00:00 2001 From: Uwe Risse Date: Fri, 27 Jan 2023 19:08:26 +0100 Subject: [PATCH] Don't accept free text 73/RR73 for MSK144. --- widgets/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index d735ddf15..78d1a2fc1 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -4109,7 +4109,7 @@ void MainWindow::auto_sequence (DecodedText const& message, unsigned start_toler || message_words.contains (ui->dxCallEntry->text ()) || message_words.contains (Radio::base_callsign (ui->dxCallEntry->text ())) || message_words.contains ("DE"))) - || !message.isStandardMessage ()); // free text 73/RR73 + || (!message.isStandardMessage () && m_mode != "MSK144")); // free text 73/RR73 except for MSK auto const& w = msg_no_hash.split(" ",SkipEmptyParts); QString w2;