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.
pull/3312/head
Peter Goodhall 2025-08-02 11:53:23 +01:00
rodzic 5c5b739e52
commit 7d47bd08a9
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

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