1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-07 17:42:35 +02:00

* Also fixed auto-resolving for creating playlists.

This commit is contained in:
Christian Muehlhaeuser 2011-03-02 17:59:40 +01:00
parent fcbf62a618
commit 77fc815560

View File

@ -104,7 +104,7 @@ XSPFLoader::gotBody()
album = e.firstChildElement( "album" ).text();
track = e.firstChildElement( "title" ).text();
p->setQuery( Tomahawk::Query::get( artist, track, album ) );
p->setQuery( Tomahawk::Query::get( artist, track, album, uuid() ) );
p->query()->setDuration( e.firstChildElement( "duration" ).text().toInt() / 1000 );
m_entries << p;
}