From 83b833a4f7488d30e25c092ea99d8710e1b59241 Mon Sep 17 00:00:00 2001 From: Uwe Risse Date: Wed, 7 Dec 2022 11:10:07 +0100 Subject: [PATCH] Prevent a crash when clicking on a message with "m_baseCall <...>" in EU VHF contest mode. --- widgets/mainwindow.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 1c049b5e1..fb50d804e 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -5373,6 +5373,10 @@ void MainWindow::processMessage (DecodedText const& message, Qt::KeyboardModifie MessageBox::information_message (this, tr ("Should you switch to RTTY contest mode?")); } + if(SpecOp::EU_VHF==m_specOp and message.string().contains("<...>")) { + return; + } + if(SpecOp::EU_VHF==m_specOp and message_words.at(2).contains(m_baseCall) and (!message_words.at(3).contains(qso_partner_base_call)) and (!m_bDoubleClicked)) { return;