db/Print: pass TagType to PrintUniqueTags()

This commit is contained in:
Max Kellermann
2018-07-25 11:21:47 +02:00
parent 0505cb8f7e
commit f7fb8a33d7
3 changed files with 5 additions and 7 deletions

View File

@@ -289,7 +289,7 @@ handle_list(Client &client, Request args, Response &r)
PrintSongUris(r, client.GetPartition(), filter.get());
else
PrintUniqueTags(r, client.GetPartition(),
tagType, group_mask, filter.get());
TagType(tagType), group_mask, filter.get());
return CommandResult::OK;
}