1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-07 14:46:33 +02:00

* Fixed auto-resolving a station's queries.

This commit is contained in:
Christian Muehlhaeuser
2011-03-02 17:54:12 +01:00
parent 220a80ac43
commit fcbf62a618
2 changed files with 1 additions and 2 deletions

View File

@@ -152,7 +152,6 @@ Pipeline::reportResults( QID qid, const QList< result_ptr >& results )
}
state = m_qidsState.value( qid ) - 1;
if ( state )
{
qDebug() << Q_FUNC_INFO << "replacing" << qid << state;

View File

@@ -285,7 +285,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() );
return Query::get( song.artistName(), song.title(), QString(), uuid() );
}
QWidget*