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.
这个提交包含在:
Peter Goodhall 2025-08-02 12:01:38 +01:00
父节点 8f4eaba4e9
当前提交 3d3ac21961

查看文件

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