RDA support for ADIF export

This commit is contained in:
cats-shadow
2024-06-10 18:32:53 +03:00
parent db584e98ac
commit 3960c128ee

View File

@@ -205,6 +205,13 @@ class AdifHelper {
$county = '';
}
if ($qso->station_cnty && ( $qso->station_dxcc == '54' || $qso->station_dxcc == '15') && $county == '') {
$county = trim($qso->station_cnty);
} else {
$county = '';
}
$line .= $this->getAdifFieldLine("MY_CNTY", $county);
$stationsSig = $qso->station_sig;