Skip to content

Commit

Permalink
Fix backward compatibility for server uptime in master server web page
Browse files Browse the repository at this point in the history
  • Loading branch information
proller committed Mar 29, 2013
1 parent 16c11eb commit 177ca4f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions util/master/list.js
Expand Up @@ -54,9 +54,8 @@ function success(r) {
h += '</td>';
h += '<td class="mts_description">' + e(s.description) + '</td>';
h += '<td class="mts_flags">' + e(s.password ? 'Pwd ' : '') + (s.creative ? 'Cre ' : '') + (s.damage ? 'Dmg ' : '') + (s.pvp ? 'Pvp ' : '') + (s.dedicated ? 'Ded ' : '') + '</td>';
if (!s.time || s.time < 0) s.time = 0;
if (!s.start || s.start < 0) s.start = 0;
h += '<td class="mts_time">' + (s.uptime ? human_time(s.uptime, 1) : '') + '</td>';
h += '<td class="mts_time">' + (s.uptime ? human_time(s.uptime, 1) : s.start ? human_time(s.start) : '') + '</td>';
h += '<td class="mts_ping">' + (s.ping ? parseFloat(s.ping).toFixed(3) * 1000 : '') + '</td>';
h += '</tr>';
}
Expand Down

0 comments on commit 177ca4f

Please sign in to comment.