aboutsummaryrefslogtreecommitdiffstats
path: root/src/DatabaseSong.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/DatabaseSong.cxx')
-rw-r--r--src/DatabaseSong.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/DatabaseSong.cxx b/src/DatabaseSong.cxx
index 9afd109cb..a8f2188cc 100644
--- a/src/DatabaseSong.cxx
+++ b/src/DatabaseSong.cxx
@@ -22,6 +22,7 @@
#include "DatabaseGlue.hxx"
#include "DatabasePlugin.hxx"
#include "DetachedSong.hxx"
+#include "Mapper.hxx"
DetachedSong *
DatabaseDetachSong(const char *uri, Error &error)
@@ -34,7 +35,7 @@ DatabaseDetachSong(const char *uri, Error &error)
if (tmp == nullptr)
return nullptr;
- DetachedSong *song = new DetachedSong(*tmp);
+ DetachedSong *song = new DetachedSong(map_song_detach(*tmp));
db->ReturnSong(tmp);
return song;
}