1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-20 15:59:42 +01:00

Don't resolve a query twice. EchonestGenerator no longer gives out auto-resolving queries, resolve your own.

This commit is contained in:
Leo Franchi 2011-08-24 21:36:39 -04:00
parent 2010cb41c7
commit 9801370a47

View File

@ -412,7 +412,7 @@ query_ptr
EchonestGenerator::queryFromSong( const Echonest::Song& song )
{
// track[ "album" ] = song.release(); // TODO should we include it? can be quite specific
return Query::get( song.artistName(), song.title(), QString(), uuid() );
return Query::get( song.artistName(), song.title(), QString(), uuid(), false );
}