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

remove query.Artistids conditions

This commit is contained in:
grafixeyehero 2019-10-10 20:43:04 +03:00
parent af3579f328
commit 03a16287a0

View file

@ -323,11 +323,7 @@ define(["connectionManager", "listView", "cardBuilder", "imageLoader", "libraryB
} else if (item.Type == "Studio") { } else if (item.Type == "Studio") {
query.StudioIds = item.Id; query.StudioIds = item.Id;
} else if (item.Type == "MusicArtist") { } else if (item.Type == "MusicArtist") {
if (connectionManager.getApiClient(item.ServerId).isMinServerVersion("3.4.1.18")) { query.AlbumArtistIds = item.Id;
query.AlbumArtistIds = item.Id;
} else {
query.ArtistIds = item.Id;
}
} }
} }