From cb630c45f6dadb43cbb4beef26434f71676b0b1b Mon Sep 17 00:00:00 2001 From: J0J0 T Date: Mon, 22 Aug 2022 12:22:39 +0200 Subject: [PATCH] convert: playlist: Also use syspath() for contents of playlist. We want to have processed every entry in the media list we pass to the M3UFile instance. --- beetsplug/convert.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/beetsplug/convert.py b/beetsplug/convert.py index 416fb9502..88c99e53d 100644 --- a/beetsplug/convert.py +++ b/beetsplug/convert.py @@ -485,9 +485,9 @@ class ConvertPlugin(BeetsPlugin): # computers. self._log.info("Creating playlist file: {0}", playlist) items_paths = [ - item.destination( + util.syspath(item.destination( basedir=dest, path_formats=path_formats, fragment=True - ) for item in items + )) for item in items ] if not pretend: m3ufile = M3UFile(playlist)