Skip to content

Commit

Permalink
update artist search
Browse files Browse the repository at this point in the history
  • Loading branch information
LukePulverenti committed Jan 18, 2018
1 parent caa03f3 commit 8ebd53f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Emby.Server.Implementations/Library/SearchEngine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ private Task<IEnumerable<SearchHintInfo>> GetSearchHints(SearchQuery query, User
searchQuery.ParentId = null;
searchQuery.IncludeItemsByName = true;
searchQuery.IncludeItemTypes = new string[] { };
mediaItems = _libraryManager.GetArtists(searchQuery).Items.Select(i => i.Item1).ToList();
mediaItems = _libraryManager.GetAllArtists(searchQuery).Items.Select(i => i.Item1).ToList();
}
else
{
Expand Down

0 comments on commit 8ebd53f

Please sign in to comment.