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.
pull/3312/head
Peter Goodhall 2025-08-02 12:01:38 +01:00
rodzic 7d47bd08a9
commit 670d068243
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -1430,7 +1430,7 @@ class Lotw extends CI_Controller {
} }
case "RTTY": case "RTTY":
if ($submode == "ASCI") { if ($submode == "ASCI") {
return "ASCI"; return "RTTY";
break; break;
} else { } else {
return "RTTY"; return "RTTY";
@ -1438,7 +1438,7 @@ class Lotw extends CI_Controller {
} }
case "CW": case "CW":
if ($submode == "PCW") { if ($submode == "PCW") {
return "PCW"; return "CW";
break; break;
} else { } else {
return "CW"; return "CW";