summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
Diffstat (limited to 'common')
-rw-r--r--common/playlist.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/common/playlist.c b/common/playlist.c
index d64db16e98..46ae36d643 100644
--- a/common/playlist.c
+++ b/common/playlist.c
@@ -30,7 +30,8 @@
struct playlist_entry *playlist_entry_new(const char *filename)
{
struct playlist_entry *e = talloc_zero(NULL, struct playlist_entry);
- e->filename = talloc_strdup(e, filename);
+ char *local_filename = mp_file_url_to_filename(e, bstr0(filename));
+ e->filename = local_filename ? local_filename : talloc_strdup(e, filename);
return e;
}