Archived
1
0

fix date error

This commit is contained in:
Jeff Becker 2016-07-04 10:36:10 -04:00
parent d2142f7c83
commit 63edd14243
No known key found for this signature in database
GPG Key ID: AB950234D6EA286B

View File

@ -1223,7 +1223,7 @@ Chat.prototype.generateChat = function(data) {
}
if (data.Posted) {
date.appendChild(document.createTextNode((new Date(data.Posted)).toLocaleString()));
date.appendChild(document.createTextNode((new Date(data.Posted * 1000)).toLocaleString()));
}
if (data.Tripcode) {