fix timestamps when viewing logs
This commit is contained in:
parent
eb3ec05f88
commit
128d446f39
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue