aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/Main.cxx3
-rw-r--r--src/Mapper.cxx1
2 files changed, 3 insertions, 1 deletions
diff --git a/src/Main.cxx b/src/Main.cxx
index 22e71195a..b7f914cdb 100644
--- a/src/Main.cxx
+++ b/src/Main.cxx
@@ -145,6 +145,9 @@ glue_mapper_init(Error &error)
if (music_dir.IsNull())
music_dir = GetUserMusicDir();
+ if (!music_dir.IsNull())
+ music_dir.ChopSeparators();
+
#ifdef ENABLE_DATABASE
if (!music_dir.IsNull()) {
const auto music_dir_utf8 = music_dir.ToUTF8();
diff --git a/src/Mapper.cxx b/src/Mapper.cxx
index fc5a9cfe0..e6d7c3900 100644
--- a/src/Mapper.cxx
+++ b/src/Mapper.cxx
@@ -92,7 +92,6 @@ mapper_set_music_dir(AllocatedPath &&path)
assert(!path.IsNull());
music_dir_fs = std::move(path);
- music_dir_fs.ChopSeparators();
const auto music_dir_utf8 = music_dir_fs.ToUTF8();