1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-06 14:16:32 +02:00

Merge pull request #305 from theli-ua/pipeline

Fix condition to check number of active queries
This commit is contained in:
Christian Muehlhaeuser
2015-05-29 01:08:07 +02:00

View File

@@ -515,7 +515,7 @@ Pipeline::shuntNext()
}
// Check if we are ready to dispatch more queries
if ( d->qidsState.count() >= d->maxConcurrentQueries )
if ( activeQueryCount() >= d->maxConcurrentQueries )
return;
/*