mirror of
https://github.com/SuperBFG7/ympd
synced 2024-12-26 02:50:26 +00:00
Fix: show lastPlayed in song details
This commit is contained in:
parent
23d81da191
commit
54a14277c8
@ -1482,7 +1482,7 @@ function parseSongDetails(obj) {
|
|||||||
songDetails += '<tr><th colspan="2">Statistics</th></tr>' +
|
songDetails += '<tr><th colspan="2">Statistics</th></tr>' +
|
||||||
'<tr><th>Play count</th><td>' + obj.data.playCount + '</td></tr>' +
|
'<tr><th>Play count</th><td>' + obj.data.playCount + '</td></tr>' +
|
||||||
'<tr><th>Skip count</th><td>' + obj.data.skipCount + '</td></tr>' +
|
'<tr><th>Skip count</th><td>' + obj.data.skipCount + '</td></tr>' +
|
||||||
'<tr><th>Last played</th><td>' + (obj.data.lastPlayed == 0 ? 'never' : new Date(value * 1000).toUTCString()) + '</td></tr>' +
|
'<tr><th>Last played</th><td>' + (obj.data.lastPlayed == 0 ? 'never' : new Date(obj.data.lastPlayed * 1000).toUTCString()) + '</td></tr>' +
|
||||||
'<tr><th>Like</th><td>' + like + '</td></tr>';
|
'<tr><th>Like</th><td>' + like + '</td></tr>';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user