Only show if we don't know why we failed to ping.
This commit is contained in:
parent
5012cd7771
commit
aed7947f5a
@ -126,10 +126,12 @@ function updateServerStatus(lastEntry) {
|
|||||||
|
|
||||||
div.html(newStatus);
|
div.html(newStatus);
|
||||||
} else {
|
} else {
|
||||||
var newStatus = '<span class="color-red">Failed to ping!';
|
var newStatus = '<br /><span class="color-red">';
|
||||||
|
|
||||||
if (findErrorMessage(lastEntry.error)) {
|
if (findErrorMessage(lastEntry.error)) {
|
||||||
newStatus += '<br />' + findErrorMessage(lastEntry.error);
|
newStatus += findErrorMessage(lastEntry.error);
|
||||||
|
} else {
|
||||||
|
newStatus += 'Failed to ping!';
|
||||||
}
|
}
|
||||||
|
|
||||||
div.html(newStatus + '</span>');
|
div.html(newStatus + '</span>');
|
||||||
|
Loading…
Reference in New Issue
Block a user