try this to fix playlists

This commit is contained in:
John Shaver 2025-03-25 18:56:06 -07:00
parent 7d204aa27c
commit 6cc5a1e378

View file

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