Improve the way hamsat alerts work, and add the ability to detect satellite names from spot comments. Closes #149

This commit is contained in:
Ian Renton
2026-09-23 22:08:36 +01:00
parent 981fea57ed
commit c26482f06b
15 changed files with 90 additions and 35 deletions
+5
View File
@@ -266,6 +266,11 @@ function addAlertRowsToTable(tbody, alerts) {
} else {
items[i] = `${escapeHtml(a["sig_refs"][i]["id"])}`
}
// If this is a satellite alert the ref will just be the satellite, but DX grid is also important, so
// show that if we can.
if (a["sig_refs"][i]["sig"] === "Satellite" && a["dx_grid"]) {
items[i] += " from " + a["sig_refs"][i]["dx_grid"];
}
}
activityRefs = items.join(", ");
}