diff --git a/spotproviders/sota.py b/spotproviders/sota.py index ca7079d..47d9538 100644 --- a/spotproviders/sota.py +++ b/spotproviders/sota.py @@ -19,8 +19,6 @@ class SOTA(HTTPSpotProvider): # The actual data lookup all happens after parsing and checking the epoch. EPOCH_URL = "https://api-db2.sota.org.uk/api/spots/epoch" SPOTS_URL = "https://api-db2.sota.org.uk/api/spots/60/all/all" - # SOTA spots don't contain lat/lon, we need a separate lookup for that - SUMMIT_URL_ROOT = "https://api-db2.sota.org.uk/api/summits/" def __init__(self, provider_config): super().__init__("SOTA", provider_config, self.EPOCH_URL, self.POLL_INTERVAL_SEC) diff --git a/static/js/status.js b/static/js/status.js index a4ac8da..c15c563 100644 --- a/static/js/status.js +++ b/static/js/status.js @@ -46,7 +46,7 @@ function loadStatus() {
${p["sig_name"]}
Status: ${p["status"]}
Last updated: ${(p["enabled"] && p["last_updated"] > 0) ? moment.unix(p["last_updated"]).utc().fromNow() : "N/A"}
-
Reference count: ${(p["enabled"] && p["reference_count"] > 0) ? p["reference_count"] : "N/A"}
+
References: ${(p["enabled"] && p["reference_count"] > 0) ? p["reference_count"] : "N/A"}
`); }); });