From 2b55e597af77e34f5a4d11025d6d8a965000d729 Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Tue, 31 Mar 2015 08:48:15 +0200 Subject: [PATCH] Don't abort resolving when query gets fully solved. --- src/libtomahawk/Pipeline.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/libtomahawk/Pipeline.cpp b/src/libtomahawk/Pipeline.cpp index fbb4c0be2..cfb07eb67 100644 --- a/src/libtomahawk/Pipeline.cpp +++ b/src/libtomahawk/Pipeline.cpp @@ -370,11 +370,11 @@ Pipeline::reportResults( QID qid, const QList< result_ptr >& results ) connect( checker, SIGNAL( done() ), SLOT( onResultUrlCheckerDone() ) ); addResultsToQuery( q, cleanResults ); - if ( q->solved() && !q->isFullTextQuery() ) +/* if ( q->solved() && !q->isFullTextQuery() ) { setQIDState( q, 0 ); return; - } + }*/ if ( httpResults.isEmpty() ) decQIDState( q ); @@ -423,11 +423,11 @@ Pipeline::onResultUrlCheckerDone() const query_ptr q = checker->query(); addResultsToQuery( q, checker->validResults() ); - if ( q && !q->isFullTextQuery() ) +/* if ( q && !q->isFullTextQuery() ) { setQIDState( q, 0 ); return; - } + }*/ decQIDState( q ); }