[LoTW] Bugfix for sync when COL_LOTW_QSLRDATE is not set
这个提交包含在:
父节点
b29abebf3f
当前提交
06a29f4743
共有 1 个文件被更改,包括 5 次插入 和 1 次删除
|
|
@ -1672,7 +1672,11 @@ class Logbook_model extends CI_Model {
|
||||||
$query = $this->db->get($this->config->item('table_name'));
|
$query = $this->db->get($this->config->item('table_name'));
|
||||||
$row = $query->row();
|
$row = $query->row();
|
||||||
|
|
||||||
return $row->COL_LOTW_QSLRDATE;
|
if (isset($row)) {
|
||||||
|
return $row->COL_LOTW_QSLRDATE;
|
||||||
|
}
|
||||||
|
|
||||||
|
return '1900-01-01 00:00:00.000';
|
||||||
}
|
}
|
||||||
|
|
||||||
//////////////////////////////
|
//////////////////////////////
|
||||||
|
|
|
||||||
正在加载…
在新工单中引用