Merge pull request #482 from AndreasK79/fix_lotw_import
Added fix for import of not found LoTW matches. Fixes #480.
这个提交包含在:
当前提交
e78fdf642c
共有 1 个文件被更改,包括 2 次插入 和 1 次删除
|
|
@ -63,7 +63,8 @@ class Lotw extends CI_Controller {
|
||||||
|
|
||||||
if($status == "No Match") {
|
if($status == "No Match") {
|
||||||
// Create the Entry
|
// Create the Entry
|
||||||
$this->logbook_model->import($record);
|
$station_id = $this->input->post('station_profile');
|
||||||
|
$this->logbook_model->import($record, $station_id, NULL, NULL, NULL);
|
||||||
} else {
|
} else {
|
||||||
$lotw_status = $this->logbook_model->lotw_update($time_on, $record['call'], $record['band'], $qsl_date, $record['qsl_rcvd']);
|
$lotw_status = $this->logbook_model->lotw_update($time_on, $record['call'], $record['band'], $qsl_date, $record['qsl_rcvd']);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
正在加载…
在新工单中引用