1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

add ArtistItems to api output

This commit is contained in:
Luke Pulverenti 2015-03-13 13:25:28 -04:00
parent f4acc2ad61
commit 66813c9b27
7 changed files with 46 additions and 45 deletions

View file

@ -423,7 +423,7 @@
else if (firstItem.Type == "MusicArtist") {
promise = self.getItemsForPlayback({
Artists: firstItem.Name,
ArtistIds: firstItem.Id,
Filters: "IsNotFolder",
Recursive: true,
SortBy: "SortName",
@ -938,7 +938,7 @@
if (item.Type == "MusicArtist") {
query.MediaTypes = "Audio";
query.Artists = item.Name;
query.ArtistIds = item.Id;
}
else if (item.Type == "MusicGenre") {