Allow 30s slack for message times in the future.

This commit is contained in:
Juliusz Chroboczek
2020-11-05 21:09:16 +01:00
parent 7ee8cbc45a
commit 49ade2f66f
+1 -1
View File
@@ -1248,7 +1248,7 @@ function formatLines(lines) {
function formatTime(time) {
let delta = Date.now() - time;
let date = new Date(time);
if(delta > -1000)
if(delta > -30000)
return date.toTimeString().slice(null, 8);
return date.toLocaleString();
}