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(); };