Overnight bug fixes

This commit is contained in:
Ian Renton
2026-09-02 07:40:57 +01:00
parent 8189be699e
commit 9258d680fc
11 changed files with 19 additions and 16 deletions
+1
View File
@@ -86,6 +86,7 @@ class ParksNPeaks(HTTPSpotProvider):
"POTA",
"SOTA",
"WWFF",
"HEMA",
"SIOTA",
"ZLOTA",
"KRMNPA",
+1 -1
View File
@@ -29,7 +29,7 @@ class POTA(HTTPSpotProvider):
source_id=source_spot["spotId"],
dx_call=source_spot["activator"].upper(),
de_call=source_spot["spotter"].upper(),
freq=float(source_spot["frequency"]) * 1000,
freq=float(source_spot["frequency"]) * 1000 if source_spot["frequency"] != "INVALID" else None,
mode=source_spot["mode"].upper(),
comment=source_spot["comments"],
sig="POTA",