From c8e0a8a8f0be0efcfc8d4b0c2a6478ea3c69f655 Mon Sep 17 00:00:00 2001 From: Andreas Kristiansen <6977712+AndreasK79@users.noreply.github.com> Date: Sat, 12 Oct 2024 08:37:16 +0200 Subject: [PATCH] Forgot the class with the changes --- src/QSLManager/QSO.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/QSLManager/QSO.php b/src/QSLManager/QSO.php index d22a01fbf..ace60b37e 100644 --- a/src/QSLManager/QSO.php +++ b/src/QSLManager/QSO.php @@ -12,6 +12,7 @@ class QSO private string $qsoID; private string $qsoDateTime; private string $de; + private string $stationname; private string $dx; private string $mode; private string $submode; @@ -223,6 +224,8 @@ class QSO $this->orbit = $data['orbit'] ?? ''; $this->contest = $data['contestname'] ?? ''; + + $this->stationname = $data['station_profile_name'] ?? ''; } /** @@ -980,7 +983,8 @@ class QSO 'dok' => $this->getFormattedDok(), 'wwff' => $this->getFormattedWwff(), 'sig' => $this->getFormattedSig(), - 'continent' => $this->continent + 'continent' => $this->continent, + 'stationname' => $this->stationname ]; }