Added a way to filter artist by type (album artist, track artist, all artits). Fixes #19

This commit is contained in:
emeric
2020-01-22 21:31:11 +01:00
parent e384cdd021
commit 6950616466
10 changed files with 69 additions and 15 deletions
+1 -1
View File
@@ -1387,7 +1387,7 @@ handleSearchRequestCommon(RequestContext& context, bool id3)
bool more;
{
auto artists {Artist::getByFilter(context.dbSession, {}, keywords, artistOffset, artistCount, more)};
auto artists {Artist::getByFilter(context.dbSession, {}, keywords, {}, artistOffset, artistCount, more)};
for (const Artist::pointer& artist : artists)
searchResult2Node.addArrayChild("artist", artistToResponseNode(user, artist, id3));
}