Skip to content

Commit

Permalink
Fix issue #3
Browse files Browse the repository at this point in the history
  • Loading branch information
m0ngr31 committed Jul 27, 2020
1 parent f95aa1d commit 80fc2b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/jellyfin.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ const JellyfinService = {
},
getArtists: async () => {
const userId = JellyfinService.getUser().Id;
const artists = await Requests.get('Artists', {userId}, true, true);
const artists = await Requests.get('Artists/AlbumArtists', {userId}, true, true);
return artists.Items;
},
getItem: async itemId => {
Expand Down

0 comments on commit 80fc2b8

Please sign in to comment.