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

Merge branch 'dev' into Video-Playlist-Controls

This commit is contained in:
T. Adams 2015-03-13 21:57:10 -07:00
commit 4be4ca4cef
8 changed files with 67 additions and 37 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",
@ -949,7 +949,7 @@
if (item.Type == "MusicArtist") {
query.MediaTypes = "Audio";
query.Artists = item.Name;
query.ArtistIds = item.Id;
}
else if (item.Type == "MusicGenre") {