From 8b3b48541e802c75430fc403198df48e92c66314 Mon Sep 17 00:00:00 2001 From: Anton Romanov Date: Thu, 28 May 2015 15:16:19 -0700 Subject: [PATCH] Fix condition to check number of active queries --- src/libtomahawk/Pipeline.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libtomahawk/Pipeline.cpp b/src/libtomahawk/Pipeline.cpp index e4ed7f28f..101288e8d 100644 --- a/src/libtomahawk/Pipeline.cpp +++ b/src/libtomahawk/Pipeline.cpp @@ -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; /*