From 7d204aa27cbd7abc28ac9fad17bcdc2077d3f0e7 Mon Sep 17 00:00:00 2001 From: John Shaver Date: Fri, 7 Mar 2025 08:55:48 -0800 Subject: [PATCH] maybe this will fix playlists? --- lib/m3uWriter.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/m3uWriter.ts b/lib/m3uWriter.ts index fe80a7f..0dff845 100644 --- a/lib/m3uWriter.ts +++ b/lib/m3uWriter.ts @@ -11,7 +11,7 @@ const createM3U = (name: string, songlist: SongMeta[]) => { const path = getLocalPath(song.Path); const name = getSongLocalFileName(song); - m3uWriter.file(nodePath.join(path, name)); + m3uWriter.file('./' + nodePath.join(path, name)); } return m3uWriter.toString(); };