kopia lustrzana https://github.com/magicbug/Cloudlog
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.pull/3312/head
rodzic
7d47bd08a9
commit
670d068243
|
|
@ -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";
|
||||
|
|
|
|||
Ładowanie…
Reference in New Issue