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.
这个提交包含在:
父节点
7d47bd08a9
当前提交
670d068243
共有 1 个文件被更改,包括 2 次插入 和 2 次删除
|
|
@ -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";
|
||||
|
|
|
|||
正在加载…
在新工单中引用