SongPrint: use DetachedSong::GetDuration()

Fixes the bogus duration of the last track in a CUE sheet.
This commit is contained in:
Max Kellermann
2014-07-12 18:41:15 +02:00
parent 11a9536271
commit 071d05465a
2 changed files with 6 additions and 1 deletions

View File

@@ -114,5 +114,9 @@ song_print_info(Client &client, const DetachedSong &song, bool base)
if (song.GetLastModified() > 0)
time_print(client, "Last-Modified", song.GetLastModified());
tag_print(client, song.GetTag());
tag_print_values(client, song.GetTag());
double duration = song.GetDuration();
if (duration >= 0)
client_printf(client, "Time: %u\n", unsigned(duration + 0.5));
}