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!
This commit is contained in:
parent
12768babdf
commit
fc1664d9fc
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue