Don't report POTA RBN if frequency is 0

merge-requests/229/head
Tag 2022-10-08 16:41:56 -07:00
rodzic ff015b070c
commit 1273355187
1 zmienionych plików z 14 dodań i 11 usunięć

Wyświetl plik

@ -218,17 +218,20 @@ function reportPotaRBN(callSpot)
spotterGrid: callSpot.spotterGrid
}
getPostJSONBuffer(
"https://api.pota.app/spot",
rbnReportResult,
null,
"https",
443,
report,
10000,
null,
null
);
if (Number(report.frequency) > 0)
{
getPostJSONBuffer(
"https://api.pota.app/spot",
rbnReportResult,
null,
"https",
443,
report,
10000,
null,
null
);
}
}
function reportPotaQSO(record)