1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-05 00:22:31 +02:00

Merge pull request #118 from crabmanX/master

show EPs again
This commit is contained in:
Leo Franchi 2012-09-02 19:48:14 -07:00
commit ca848928d9

View File

@ -150,7 +150,7 @@ MusicBrainzPlugin::artistSearchSlot()
QString requestString( "http://musicbrainz.org/ws/2/release-group" );
QUrl url( requestString );
url.addQueryItem( "artist", artist_id );
url.addQueryItem( "type", "album" );
url.addQueryItem( "type", "album|ep" );
url.addQueryItem( "limit", "100" );
QNetworkReply* newReply = TomahawkUtils::nam()->get( QNetworkRequest( url ) );
@ -257,7 +257,7 @@ MusicBrainzPlugin::albumFoundSlot()
{
secTypesSL.append(secTypesDL.at(i).toElement().text());
}
if ( !secTypesSL.contains("Live") && !secTypesSL.contains("Ep") && !secTypesSL.contains("Compilation") )
if ( !secTypesSL.contains("Live") && !secTypesSL.contains("Compilation") )
{
QString album = group.firstChildElement("title").text();
if ( !albums.contains( album ) )