Prefer album artist even when DAAP says artist

This commit is contained in:
ejurgensen 2013-07-22 22:30:55 +02:00
parent 0f3cf27f57
commit 86cf922615
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ struct dmap_query_field_map;
"dmap.itemid", "f.id", 1
"daap.songalbum", "f.album", 0
"daap.songalbumid", "f.songalbumid", 1
"daap.songartist", "f.artist", 0
"daap.songartist", "f.album_artist", 0
"daap.songalbumartist", "f.album_artist", 0
"daap.songbitrate", "f.bitrate", 1
"daap.songcomment", "f.comment", 0

View File

@ -1206,7 +1206,7 @@ db_query_start(struct query_params *qp)
break;
case Q_BROWSE_ARTISTS:
ret = db_build_query_browse(qp, "artist", &query);
ret = db_build_query_browse(qp, "album_artist", &query);
break;
case Q_BROWSE_GENRES: