always update from database

This commit is contained in:
HB9HIL
2024-11-13 12:09:15 +01:00
parent 185decf31e
commit beb01cbc63

View File

@@ -543,10 +543,7 @@ class Logbookadvanced_model extends CI_Model {
$updatedData['COL_ITUZ'] = $callbook['ituz'];
$updated = true;
}
if (!empty($callbook['continent']) && empty($qso['COL_CONT'])) {
$updatedData['COL_CONT'] = $callbook['continent'];
$updated = true;
} else if (empty($qso['COL_CONT'])) {
if (empty($qso['COL_CONT'])) {
$updatedData['COL_CONT'] = $this->logbook_model->getContinent($callbook['dxcc']);
$updated = true;
}