diff --git a/realms/templates/wiki/history.html b/realms/templates/wiki/history.html
index 8595554..78df6c0 100644
--- a/realms/templates/wiki/history.html
+++ b/realms/templates/wiki/history.html
@@ -34,10 +34,10 @@
{ "data": "message" },
{ "data": "time",
"render": function (data) {
- var date = new Date(0);
- date.setUTCSeconds(data)
+ var date = new Date(data * 1000);
return date.toDateString();
- }}
+ }
+ }
]
});
});