Fix wrong directory used, wrong sorting and time formatting

This commit is contained in:
2017-08-18 17:18:14 +02:00
parent d4370881ca
commit 0c63b7327c
2 changed files with 3 additions and 6 deletions

View File

@@ -39,7 +39,7 @@ function secondsToHumanReadable(seconds) {
}
result += padValue(m, 2) + ":";
result += padValue(s, 2) + ".";
result += msec;
result += padValue(msec, 2);
return result;
}