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:
parent
f4acc2ad61
commit
66813c9b27
7 changed files with 46 additions and 45 deletions
|
@ -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") {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue