Merge pull request #1323 from AndreasK79/lotw_download_fix
[LoTW] Bugfix for sync when not COL_LOTW_QSLRDATE is set
这个提交包含在:
当前提交
e4b967628e
共有 1 个文件被更改,包括 6 次插入 和 2 次删除
|
|
@ -1480,8 +1480,12 @@ class Logbook_model extends CI_Model {
|
|||
$query = $this->db->get($this->config->item('table_name'));
|
||||
$row = $query->row();
|
||||
|
||||
return $row->COL_LOTW_QSLRDATE;
|
||||
}
|
||||
if (isset($row)) {
|
||||
return $row->COL_LOTW_QSLRDATE;
|
||||
}
|
||||
|
||||
return '1900-01-01 00:00:00.000';
|
||||
}
|
||||
|
||||
//////////////////////////////
|
||||
// Update a QSO with eQSL QSL info
|
||||
|
|
|
|||
正在加载…
在新工单中引用