1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-14 13:01:53 +02:00

show EPs again

This commit is contained in:
Kilian Lackhove 2012-09-02 16:33:42 +02:00
parent bc26c72c8c
commit 8dac3edc6c

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 ) )