From 670d068243bb9eb458338e45852aef0b57ef8969 Mon Sep 17 00:00:00 2001 From: Peter Goodhall Date: Sat, 2 Aug 2025 12:01:38 +0100 Subject: [PATCH] Fix mode mapping for RTTY and CW submodes Corrects the returned mode for RTTY/ASCI and CW/PCW submodes to consistently return 'RTTY' and 'CW' respectively, ensuring accurate mode representation. --- application/controllers/Lotw.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/controllers/Lotw.php b/application/controllers/Lotw.php index 1c484f5d..3c36b215 100644 --- a/application/controllers/Lotw.php +++ b/application/controllers/Lotw.php @@ -1430,7 +1430,7 @@ class Lotw extends CI_Controller { } case "RTTY": if ($submode == "ASCI") { - return "ASCI"; + return "RTTY"; break; } else { return "RTTY"; @@ -1438,7 +1438,7 @@ class Lotw extends CI_Controller { } case "CW": if ($submode == "PCW") { - return "PCW"; + return "CW"; break; } else { return "CW";