convert: playlist: Use syspath() for media files

loading as well.
This commit is contained in:
J0J0 T 2022-08-27 15:22:50 +02:00 committed by J0J0 Todos
parent a1baf9e94b
commit 785ef1576c

View file

@ -46,7 +46,7 @@ class M3UFile():
if line.startswith("#"):
# Some EXTM3U comment, do something. FIXME
continue
self.media_list.append(line)
self.media_list.append(syspath(line))
if not self.media_list:
raise EmptyPlaylistError