mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-10 04:30:25 +02:00
Handle song detail add
This commit is contained in:
@@ -97,9 +97,11 @@ export const useHandlePlayQueueAdd = () => {
|
|||||||
} else if (itemType === LibraryItem.ALBUM_ARTIST) {
|
} else if (itemType === LibraryItem.ALBUM_ARTIST) {
|
||||||
songList = await getAlbumArtistSongsById({ id, query, queryClient, server });
|
songList = await getAlbumArtistSongsById({ id, query, queryClient, server });
|
||||||
} else if (itemType === LibraryItem.SONG) {
|
} else if (itemType === LibraryItem.SONG) {
|
||||||
songList = await getSongsByQuery({ query, queryClient, server });
|
if (id?.length === 1) {
|
||||||
} else {
|
songList = await getSongById({ id: id?.[0], queryClient, server });
|
||||||
songList = await getSongById({ id: id?.[0], queryClient, server });
|
} else {
|
||||||
|
songList = await getSongsByQuery({ query, queryClient, server });
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
clearTimeout(timeoutIds.current[fetchId] as ReturnType<typeof setTimeout>);
|
clearTimeout(timeoutIds.current[fetchId] as ReturnType<typeof setTimeout>);
|
||||||
|
|||||||
Reference in New Issue
Block a user