diff --git a/src/libtomahawk/accounts/spotify/SpotifyInfoPlugin.cpp b/src/libtomahawk/accounts/spotify/SpotifyInfoPlugin.cpp index b16e24351..cddb7f105 100644 --- a/src/libtomahawk/accounts/spotify/SpotifyInfoPlugin.cpp +++ b/src/libtomahawk/accounts/spotify/SpotifyInfoPlugin.cpp @@ -89,7 +89,7 @@ SpotifyInfoPlugin::notInCacheSlot( InfoStringHash criteria, InfoRequestData requ { // No running spotify account, use our webservice QUrl lookupUrl( "http://ws.spotify.com/search/1/album.json" ); - lookupUrl.addQueryItem( "q", QString( "%1 %2" ).arg( album ).arg( album ) ); + lookupUrl.addQueryItem( "q", QString( "%1 %2" ).arg( artist ).arg( album ) ); QNetworkReply * reply = TomahawkUtils::nam()->get( QNetworkRequest( lookupUrl ) ); NewClosure( reply, SIGNAL( finished() ), this, SLOT( albumIdLookupFinished( QNetworkReply*, Tomahawk::InfoSystem::InfoRequestData ) ), reply, requestData );