1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-13 20:39:57 +01:00

* Only try to resolve query items, e.g. ignore parent nodes like sources.

This commit is contained in:
Christian Muehlhaeuser 2014-08-13 06:06:32 +02:00
parent 523357a0a6
commit d8f734d336

View File

@ -840,6 +840,8 @@ PlayableModel::ensureResolved()
for ( int i = 0; i < rowCount( QModelIndex() ); i++ )
{
query_ptr query = itemFromIndex( index( i, 0, QModelIndex() ) )->query();
if ( !query )
continue;
if ( !query->resolvingFinished() )
ql << query;