diff --git a/application/models/Logbook_model.php b/application/models/Logbook_model.php index 8a136d338..a6e9ccdcc 100644 --- a/application/models/Logbook_model.php +++ b/application/models/Logbook_model.php @@ -173,7 +173,9 @@ class Logbook_model extends CI_Model { $tx_power = null; } - if (($this->input->post('radio',TRUE) ?? 0) != 0) { + if (($this->input->post('radio',TRUE) ?? '') == 'ws') { // WebSocket + $radio_name=$this->input->post('radio_ws_name',TRUE); + } elseif (($this->input->post('radio',TRUE) ?? 0) != 0) { $this->load->model('cat'); $radio_name=$this->cat->radio_status($this->input->post('radio',TRUE))->row()->radio ?? ''; } else { diff --git a/application/views/qso/index.php b/application/views/qso/index.php index e51ebf0d7..bd657926b 100644 --- a/application/views/qso/index.php +++ b/application/views/qso/index.php @@ -409,6 +409,7 @@ if (typeof window.DX_WATERFALL_FIELD_MAP === 'undefined') { +