fix: play artist's popular song issue #70

master
qier222 4 years ago
parent a06afe1468
commit 02c4ee9fb2

@ -32,7 +32,8 @@ export function playPlaylistByID(id, trackID = "first", noCache = false) {
export function playArtistByID(id, trackID = "first") { export function playArtistByID(id, trackID = "first") {
getArtist(id).then((data) => { getArtist(id).then((data) => {
playAList(data.hotSongs, id, "artist", trackID); let trackIDs = data.hotSongs.map((t) => t.id);
playAList(trackIDs, id, "artist", trackID);
}); });
} }

Loading…
Cancel
Save