Skip to content

Commit

Permalink
Fix some display text still referring to dump1090
Browse files Browse the repository at this point in the history
  • Loading branch information
eric1tran committed Jun 11, 2019
1 parent c2dc3a0 commit f8e3ff1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions skyview/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ function fetchData() {
if (LastReceiverTimestamp === now) {
StaleReceiverCount++;
if (StaleReceiverCount > 5) {
$("#update_error_detail").text("The data from dump1090 hasn't been updated in a while. Maybe dump1090 is no longer running?");
$("#update_error_detail").text("The data from dump978 hasn't been updated in a while. Maybe dump978 is no longer running?");
$("#update_error").css('display','block');
}
} else {
Expand All @@ -180,7 +180,7 @@ function fetchData() {
});

FetchPending.fail(function(jqxhr, status, error) {
$("#update_error_detail").text("AJAX call failed (" + status + (error ? (": " + error) : "") + "). Maybe dump1090 is no longer running?");
$("#update_error_detail").text("AJAX call failed (" + status + (error ? (": " + error) : "") + "). Maybe dump978 is no longer running?");
$("#update_error").css('display','block');
});
}
Expand Down

0 comments on commit f8e3ff1

Please sign in to comment.