Fix: Print SUBMODE if submode present, else MAINMODE at labels

This commit is contained in:
int2001
2024-02-14 06:10:48 +00:00
parent 8a6dd27bd1
commit 99ab380831

View File

@@ -281,7 +281,7 @@ class Labels extends CI_Controller {
$qso_data[] = [
'time' => $qso->COL_TIME_ON,
'band' => $qso->COL_BAND,
'mode' => $qso->COL_MODE,
'mode' => ($qso->COL_SUBMODE ?? $qso->COL_MODE),
'rst' => $qso->COL_RST_SENT,
'mygrid' => $qso->station_gridsquare,
'via' => $qso->COL_QSL_VIA,