Commit 7dea5db5 authored by Markus Mittendrein's avatar Markus Mittendrein

playlist/PlaylistSong: also copy start and end time in merge_song_metadata

This is needed to correctly load playlist entries that reference a song in a cuesheet that is treated as a folder.
parent 803a48e9
...@@ -40,6 +40,13 @@ merge_song_metadata(DetachedSong &add, const DetachedSong &base) noexcept ...@@ -40,6 +40,13 @@ merge_song_metadata(DetachedSong &add, const DetachedSong &base) noexcept
} }
add.SetLastModified(base.GetLastModified()); add.SetLastModified(base.GetLastModified());
if (add.GetStartTime().IsZero()) {
add.SetStartTime(base.GetStartTime());
}
if (add.GetEndTime().IsZero()) {
add.SetEndTime(base.GetEndTime());
}
} }
static bool static bool
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment