diff --git a/src/QSLManager/QSO.php b/src/QSLManager/QSO.php
index f3b503a72..a68128ff8 100644
--- a/src/QSLManager/QSO.php
+++ b/src/QSLManager/QSO.php
@@ -818,7 +818,7 @@ class QSO
'name' => $this->getName(),
'dxcc' => $this->getDXCC(),
'state' => $this->getState(),
- 'pota' => $this->dxPOTAReference,
+ 'pota' => $this->getFormattedPota(),
'operator' => $this->getOperator(),
'cqzone' => $this->getCqzone(),
'ituzone' => $this->getItuzone(),
@@ -931,6 +931,10 @@ class QSO
return ''. $this->dxWWFFReference . '';
}
+ private function getFormattedPota() {
+ return ''. $this->dxPOTAReference . '';
+ }
+
private function getFormattedQSLSent(): string
{
$showVia = false;