diff --git a/NEWS b/NEWS index bca7dc259..5d77dee00 100644 --- a/NEWS +++ b/NEWS @@ -3,6 +3,7 @@ ver 0.19.13 (not yet released) - aiff, riff: fix ID3 chunk padding * decoder - ffmpeg: support the TAK codec +* fix disappearing duration of remote songs during playback * initialize supplementary groups with glibc 2.19+ ver 0.19.12 (2015/12/15) diff --git a/src/queue/Playlist.cxx b/src/queue/Playlist.cxx index b2fd673b4..a9e8f5209 100644 --- a/src/queue/Playlist.cxx +++ b/src/queue/Playlist.cxx @@ -37,7 +37,7 @@ playlist::TagModified(DetachedSong &&song) DetachedSong ¤t_song = queue.GetOrder(current); if (song.IsSame(current_song)) - current_song.MoveTagFrom(std::move(song)); + current_song.MoveTagItemsFrom(std::move(song)); queue.ModifyAtOrder(current); queue.IncrementVersion();