From 5eaf934cf34b61027e830094fb9a76d1db547bc5 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 29 Nov 2025 16:47:20 +0000 Subject: [PATCH 1/2] Initial plan From f54661574886374eab4c4781a98bae76c866ed13 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 29 Nov 2025 16:58:13 +0000 Subject: [PATCH 2/2] Fix ATIS not updating: change return to continue in updateAtisMap Co-authored-by: ltoenning <1716810+ltoenning@users.noreply.github.com> --- src/core/fsd/fsdclient.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/fsd/fsdclient.cpp b/src/core/fsd/fsdclient.cpp index bbe6bc906..ea98091d9 100644 --- a/src/core/fsd/fsdclient.cpp +++ b/src/core/fsd/fsdclient.cpp @@ -2433,9 +2433,9 @@ namespace swift::core::fsd //! \fixme: Anything better as this stupid code here? thread_local const QRegularExpression RegExp(R"([\n\t\r])"); const QString test = fixed.toLower().remove(RegExp); - if (test == "z") return; - if (test.startsWith("z") && test.length() == 2) return; // z1, z2, .. - if (test.length() == 1) return; // sometimes just z + if (test == "z") continue; + if (test.startsWith("z") && test.length() == 2) continue; // z1, z2, .. + if (test.length() == 1) continue; // sometimes just z // append if (!atisMessage.isEmpty()) atisMessage.appendMessage("\n");