1
0

Changed start_time_local field to time in main.js.

This commit is contained in:
Alexander Andreev 2022-03-31 16:27:17 +04:00
parent 7228ab9ff6
commit 2b18204a6c
Signed by: Arav
GPG Key ID: 1327FE8A374CC86F

View File

@ -31,7 +31,7 @@ function updateLastPlayedSong() {
let row = $('last-played').insertRow();
let start_time = row.insertCell();
start_time.appendChild(document.createTextNode(last_played.start_time_local));
start_time.appendChild(document.createTextNode(last_played.time));
let artist_cell = row.insertCell();
artist_cell.appendChild(document.createTextNode(last_played.artist));
let title_cell = row.insertCell();