[LoTW] Remaps JS8, Q65 and FST4 correctly for LoTW uploads

Fixes #1248 where JS8 QSOs where being uploaded as MFSK
This commit is contained in:
Peter Goodhall
2021-11-04 11:43:17 +00:00
parent ef6bcea1c0
commit c34f80f5e9

View File

@@ -927,6 +927,15 @@ class Lotw extends CI_Controller {
if ($submode == "FT4") {
return "FT4";
break;
} elseif ($submode == "JS8") {
return "JS8";
break;
} elseif ($submode == "FST4") {
return "FST4";
break;
} elseif ($submode == "Q65") {
return "Q65";
break;
} else {
return "MFSK";
break;