1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-21 00:12:06 +02:00

Include remixes albums when fetching releases from musicbrainz

This commit is contained in:
Anton Romanov 2015-06-05 16:15:32 -07:00
parent 6724d06eac
commit 5141ab6955

View File

@ -98,7 +98,7 @@ MusicBrainzPlugin::notInCacheSlot( InfoStringHash criteria, InfoRequestData requ
case InfoArtistReleases:
{
querySt.append( QString( "artist:\"%1\"" ).arg(criteria["artist"]) );
querySt.append( " AND (type:album OR type:ep)" );
querySt.append( " AND (type:album OR type:ep OR type:remix)" );
querySt.append( " AND status:official" );
querySt.append( " AND NOT secondarytype:live" );
querySt.append( " AND NOT secondarytype:compilation" );