Skip to content

Commit

Permalink
Support submode for WSJT import
Browse files Browse the repository at this point in the history
  • Loading branch information
rmc47 committed Apr 30, 2024
1 parent 6081abf commit 39ed277
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WsjtxImport/WsjtxImportForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ private void UploadTimer_Tick(object sender, EventArgs e)
EndTime = AdifFileReader.ParseAdifDate(record["qso_date_off"], record["time_off"]).Value,
Frequency = (long)(freq * 1000000f),
LocatorReceived = locator,
Mode = ModeHelper.Parse(record["mode"]),
Mode = ModeHelper.Parse(record["mode"], record["submode"]),
Operator = (record["operator"] ?? "Unknown").ToUpperInvariant(),
ReportReceived = record["rst_rcvd"] ?? string.Empty,
ReportSent = record["rst_sent"] ?? string.Empty,
Expand Down

0 comments on commit 39ed277

Please sign in to comment.