Commit fc1664d9 authored by Max Kellermann's avatar Max Kellermann

PlaylistMapper: use map_spl_utf8_to_fs()

Eliminates some overhead and some duplicate code, and fixes a serious bug: the old code did not append the ".m3u" suffix, and thus the "load" command was completely broken for stored playlists. D'oh!
parent 12768bab
......@@ -37,18 +37,10 @@ playlist_open_in_playlist_dir(const char *uri, Mutex &mutex, Cond &cond)
{
assert(spl_valid_name(uri));
const auto &playlist_directory_fs = map_spl_path();
if (playlist_directory_fs.IsNull())
const auto path_fs = map_spl_utf8_to_fs(uri);
if (path_fs.IsNull())
return nullptr;
const auto uri_fs = AllocatedPath::FromUTF8(uri);
if (uri_fs.IsNull())
return nullptr;
const auto path_fs =
AllocatedPath::Build(playlist_directory_fs, uri_fs);
assert(!path_fs.IsNull());
return playlist_open_path(path_fs.c_str(), mutex, cond);
}
......
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