diff options
Diffstat (limited to '')
-rw-r--r-- | src/db/plugins/simple/Song.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/db/plugins/simple/Song.cxx b/src/db/plugins/simple/Song.cxx index 3bd3d8316..9e62d579e 100644 --- a/src/db/plugins/simple/Song.cxx +++ b/src/db/plugins/simple/Song.cxx @@ -59,8 +59,8 @@ Song::NewFrom(DetachedSong &&other, Directory &parent) Song *song = song_alloc(other.GetURI(), parent); song->tag = std::move(other.WritableTag()); song->mtime = other.GetLastModified(); - song->start_ms = other.GetStartMS(); - song->end_ms = other.GetEndMS(); + song->start_ms = other.GetStartTime().ToMS(); + song->end_ms = other.GetEndTime().ToMS(); return song; } |