mirror of
https://github.com/magicbug/Cloudlog
synced 2026-08-13 17:49:35 -04:00
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:
parent
176291be45
commit
8f4eaba4e9
1 changed files with 2 additions and 2 deletions
|
|
@ -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";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue