Skip to content
Snippets Groups Projects
Commit 128d446f authored by Robin Appelman's avatar Robin Appelman
Browse files

fix timestamps when viewing logs

parent eb3ec05f
No related branches found
No related tags found
No related merge requests found
......@@ -32,7 +32,7 @@ OC.Log={
row.append(messageTd);
var timeTd=$('<td/>');
timeTd.text(formatDate(entry.time));
timeTd.text(formatDate(entry.time*1000));
row.append(timeTd);
$('#log').append(row);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment