diff options
-rw-r--r-- | src/mapper.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mapper.c b/src/mapper.c index b7ddda209..5f7dca324 100644 --- a/src/mapper.c +++ b/src/mapper.c @@ -161,6 +161,9 @@ map_fs_to_utf8(const char *path_fs, char *buffer) /* not within musicDir */ return NULL; + while (path_fs[0] == G_DIR_SEPARATOR) + ++path_fs; + return fs_charset_to_utf8(buffer, path_fs); } |