From 6cc5a1e378c73ac68df44915b471773d604b8e02 Mon Sep 17 00:00:00 2001 From: John on old dell Date: Tue, 25 Mar 2025 18:56:06 -0700 Subject: [PATCH] try this to fix playlists --- lib/m3uWriter.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/m3uWriter.ts b/lib/m3uWriter.ts index 0dff845..7e2a52f 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(); };