diff --git a/NEWS b/NEWS index ff0443739..2f0809f91 100644 --- a/NEWS +++ b/NEWS @@ -11,6 +11,8 @@ ver 0.20.2 (not yet released) - alsa: fix the DSD_U32 byte order - alsa: support DSD_U16 - recorder: fix error "Failed to create : No such file or directory" +* playlist + - cue: fix skipping songs ver 0.20.1 (2017/01/09) * input diff --git a/src/DetachedSong.hxx b/src/DetachedSong.hxx index 3fea20939..c33112443 100644 --- a/src/DetachedSong.hxx +++ b/src/DetachedSong.hxx @@ -146,7 +146,9 @@ public: */ gcc_pure bool IsSame(const DetachedSong &other) const { - return uri == other.uri; + return uri == other.uri && + start_time == other.start_time && + end_time == other.end_time; } gcc_pure gcc_nonnull_all