From 7b27757c2a4782879345a03a0b8d861c3afff81c Mon Sep 17 00:00:00 2001 From: Uwe Risse Date: Thu, 26 Sep 2024 08:54:29 +0200 Subject: [PATCH] Don't send SuperFox OTP messages to messageClient. --- widgets/mainwindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 83adbfc6a..5bd65d5ee 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -9395,6 +9395,7 @@ void MainWindow::replayDecodes () void MainWindow::postDecode (bool is_new, QString const& message) { + if (message.contains("$VERIFY$")) return; // Don't send OTP messages to messageClient auto const& decode = message.trimmed (); auto const& parts = decode.left (22).split (' ', SkipEmptyParts); if (parts.size () >= 5)