maybe this will fix playlists?

This commit is contained in:
John Shaver 2025-03-07 08:55:48 -08:00
parent 6cedc01532
commit 7d204aa27c

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