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.
This commit is contained in:
Peter Goodhall 2025-08-02 11:53:23 +01:00
parent 176291be45
commit 8f4eaba4e9

View file

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