[ADIF import] Skip QRZ Logbook upload when importing ADIF from import, and LoTW.

This commit is contained in:
Andreas
2020-12-11 10:49:33 +01:00
parent b40b3a2834
commit ae1c82815f
4 changed files with 17 additions and 10 deletions

View File

@@ -489,7 +489,7 @@ class Lotw extends CI_Controller {
$station_id = $this->logbook_model->find_correct_station_id($record['station_callsign'], $record['my_gridsquare']);
if ($station_id != NULL) {
$result = $this->logbook_model->import($record, $station_id, NULL, NULL, NULL, NULL); // Create the Entry
$result = $this->logbook_model->import($record, $station_id, NULL, NULL, NULL, NULL, true); // Create the Entry
if ($result == "") {
$lotw_status = 'QSO imported';
} else {