add songs for album or artist ordered by album

This commit is contained in:
chme 2014-04-20 11:03:49 +02:00
parent 2391838ea1
commit 4c5abdac5e
1 changed files with 6 additions and 0 deletions

View File

@ -1355,6 +1355,12 @@ dacp_reply_playqueueedit_add(struct evhttp_request *req, struct evbuffer *evbuf,
{
sort = evhttp_find_header(query, "sort");
// if sort param is missing and an album or artist is added to the queue, set sort to "album"
if (!sort && (strstr(editquery, "daap.songalbumid:") || strstr(editquery, "daap.songartistid:")))
{
sort = "album";
}
queuefilter = evhttp_find_header(query, "queuefilter");
querymodifier = evhttp_find_header(query, "query-modifier");