Merge pull request #563 from phl0/lotwModes

Prevent unsupported modes to be uploaded to LoTW
This commit is contained in:
Florian (DF2ET)
2024-07-12 08:05:06 +02:00
committed by GitHub

View File

@@ -4852,6 +4852,9 @@ function lotw_last_qsl_date($user_id) {
function get_lotw_qsos_to_upload($station_id, $start_date, $end_date) {
// Missing in tqsl 2.7.3 config.xml
$lotw_unsupported_modes = array('INTERNET', 'RPT');
$this->db->select('COL_PRIMARY_KEY,COL_CALL, COL_BAND, COL_BAND_RX, COL_TIME_ON, COL_RST_RCVD, COL_RST_SENT, COL_MODE, COL_SUBMODE, COL_FREQ, COL_FREQ_RX, COL_GRIDSQUARE, COL_SAT_NAME, COL_PROP_MODE, COL_LOTW_QSL_SENT, station_id');
$this->db->where("station_id", $station_id);
@@ -4859,7 +4862,7 @@ function lotw_last_qsl_date($user_id) {
$this->db->where('COL_LOTW_QSL_SENT', NULL);
$this->db->or_where('COL_LOTW_QSL_SENT !=', "Y");
$this->db->group_end();
$this->db->where('COL_PROP_MODE !=', "INTERNET");
$this->db->where_not_in('COL_PROP_MODE', $lotw_unsupported_modes);
$this->db->where('COL_TIME_ON >=', $start_date);
$this->db->where('COL_TIME_ON <=', $end_date);
$this->db->order_by("COL_TIME_ON", "desc");