From bb50418eeaeeac70fd4641a9b7df4e358bab4926 Mon Sep 17 00:00:00 2001 From: Andreas Kristiansen <6977712+AndreasK79@users.noreply.github.com> Date: Mon, 23 Dec 2024 17:41:42 +0100 Subject: [PATCH] Missed the qso class --- src/QSLManager/QSO.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/QSLManager/QSO.php b/src/QSLManager/QSO.php index 4ab62c92d..09ede60e9 100644 --- a/src/QSLManager/QSO.php +++ b/src/QSLManager/QSO.php @@ -44,6 +44,7 @@ class QSO private string $dxcc; private string $iota; private string $continent; + private string $region; /** @var string[] */ private string $deVUCCGridsquares; private string $dxGridsquare; @@ -174,6 +175,7 @@ class QSO $this->de = $data['station_callsign']; $this->dx = $data['COL_CALL']; $this->continent = $data['COL_CONT'] ?? ''; + $this->region = $data['COL_REGION'] ?? ''; $this->mode = $data['COL_MODE'] ?? ''; $this->submode = $data['COL_SUBMODE'] ?? ''; @@ -1185,7 +1187,8 @@ class QSO 'continent' => $this->continent, 'profilename' => $this->profilename, 'stationpower' => $this->stationpower, - 'distance' => $this->getFormattedDistance() + 'distance' => $this->getFormattedDistance(), + 'region' => $this->region ]; }