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":
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";