We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab21c21 commit c06c67cCopy full SHA for c06c67c
js/format.js
@@ -75,7 +75,7 @@ function formatData(data) {
75
}
76
for (let entry in data[key][i].uploaders) {
77
// This check should probably be done using a modulation field, but this still works I guess..
78
- if (data[key][i].software_name.includes("APRS")) {
+ if ("software_name" in data[key][i] && data[key][i].software_name.includes("APRS")) {
79
aprsflag = true;
80
var stations = data[key][i].uploaders[entry].uploader_callsign.split(",");
81
for (let uploader in stations) {
0 commit comments