diff --git a/lib/nodelist.js b/lib/nodelist.js index e867eed..8edb3be 100644 --- a/lib/nodelist.js +++ b/lib/nodelist.js @@ -3,7 +3,7 @@ define(["sorttable", "virtual-dom", "numeral"], function (SortTable, V, numeral) if (d.flags.online && "uptime" in d.statistics) return Math.round(d.statistics.uptime) else if (!d.flags.online && "lastseen" in d) - return Math.round(-(now - d.lastseen) / 3600) + return Math.round(-(now.unix() - d.lastseen.unix())) } function showUptime(uptime) {