Return 'SSB' for LSB and USB submodes in Lotw

Updated the Lotw controller to return 'SSB' instead of 'LSB' or 'USB' when the submode is LSB or USB. This change ensures consistent handling of SSB submodes.
这个提交包含在:
Peter Goodhall 2025-08-02 11:53:23 +01:00
父节点 176291be45
当前提交 8f4eaba4e9

查看文件

@ -1419,10 +1419,10 @@ class Lotw extends CI_Controller {
}
case "SSB":
if ($submode == "LSB") {
return "LSB";
return "SSB";
break;
} elseif ($submode == "USB") {
return "USB";
return "SSB";
break;
} else {
return "SSB";