convert: playlist: Disable prefix in syspath on

in load method when loading media files to content list.
This commit is contained in:
J0J0 T 2022-08-28 13:46:47 +02:00 committed by J0J0 Todos
parent 31b9e7afeb
commit e4213714ba

View file

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