[Advanced Logbook] County fix for qrz.ru

This commit is contained in:
Andreas Kristiansen
2025-07-13 15:38:29 +02:00
parent bba844f19c
commit 8b8b948f3c

View File

@@ -665,6 +665,10 @@ class Logbookadvanced_model extends CI_Model {
$updatedData['COL_CNTY'] = $callbook['state'].','.$callbook['us_county'];
$updated = true;
}
if (!empty($callbook['county']) && empty($qso['COL_CNTY'])) {
$updatedData['COL_CNTY'] = $callbook['county'];
$updated = true;
}
if (!empty($callbook['qslmgr']) && empty($qso['COL_QSL_VIA'])) {
$updatedData['COL_QSL_VIA'] = $callbook['qslmgr'];
$updated = true;