diff --git a/src/api/api.ts b/src/api/api.ts index a572312..8535186 100644 --- a/src/api/api.ts +++ b/src/api/api.ts @@ -712,7 +712,7 @@ export const getMusicDirectorySongs = async (options: { id: string }, data: any[ (data || []).forEach((song: any) => { (song?.child || []).forEach((entry: any) => { if (entry.isDir === false) { - songs.push(normalizeSong(entry)); + songs.push(entry); } }); });