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

* Fixed always resolving top songs in DropJob.

This commit is contained in:
Christian Muehlhaeuser 2011-08-21 01:10:25 +02:00 committed by Michael Zanetti
parent bb72c3efb2
commit 13db62b71c

View File

@ -429,7 +429,7 @@ DropJob::infoSystemInfo( Tomahawk::InfoSystem::InfoRequestData requestData, QVar
foreach ( const QVariant& title, output.toMap().value( "tracks" ).toList() )
{
qDebug() << "got title" << title;
results << Query::get( artist, title.toString(), QString() );
results << Query::get( artist, title.toString(), QString(), uuid() );
}
onTracksAdded( results );