Merge pull request #482 from AndreasK79/fix_lotw_import

Added fix for import of not found LoTW matches. Fixes #480.
pull/484/head
Peter Goodhall 2020-04-28 16:38:09 +01:00 zatwierdzone przez GitHub
commit e78fdf642c
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -63,7 +63,8 @@ class Lotw extends CI_Controller {
if($status == "No Match") {
// 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 {
$lotw_status = $this->logbook_model->lotw_update($time_on, $record['call'], $record['band'], $qsl_date, $record['qsl_rcvd']);
}