1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2026-03-02 03:39:21 +00:00

Fix savegame crash

This commit is contained in:
tobspr
2020-05-16 10:11:13 +02:00
parent a2b1342f55
commit b05182a1cc
2 changed files with 6 additions and 2 deletions

View File

@@ -851,7 +851,7 @@ export function formatSecondsToTimeAgo(secs) {
if (hours <= 1) {
return "one hour ago";
}
return hours + " hour ago";
return hours + " hours ago";
} else {
if (days <= 1) {
return "one day ago";