Fix ND playlist controller
This commit is contained in:
parent
adc3e421f6
commit
098e86b1f4
2 changed files with 2 additions and 2 deletions
|
@ -431,7 +431,7 @@ const removeFromPlaylist = async (
|
|||
id: query.id,
|
||||
},
|
||||
query: {
|
||||
ids: query.songId,
|
||||
id: query.songId,
|
||||
},
|
||||
});
|
||||
|
||||
|
|
|
@ -314,7 +314,7 @@ const removeFromPlaylist = z.object({
|
|||
});
|
||||
|
||||
const removeFromPlaylistParameters = z.object({
|
||||
ids: z.array(z.string()),
|
||||
id: z.array(z.string()),
|
||||
});
|
||||
|
||||
export const ndType = {
|
||||
|
|
Reference in a new issue