Skip to content

Commit

Permalink
fix copy and past error
Browse files Browse the repository at this point in the history
This causes the /expert screen to not refresh correctly after an update,

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
  • Loading branch information
dirkhh committed Oct 2, 2023
1 parent 89a013b commit cd56ab4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ <h1>{% block title %} Restarting the ADSB system {% endblock %}</h1>
request.open('GET', '/running');
request.timeout = 2000;
request.ontimeout = function () {
console.log(`still waiting for ${url} to become available`);
console.log(`still waiting for /running to become available`);
setTimeout(checkStatus, 2000);
};
request.onload = function () {
Expand Down

0 comments on commit cd56ab4

Please sign in to comment.