From c9bf3035f2ca46cf261d28160c579c173844467a Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Tue, 23 Aug 2011 18:15:23 +0200 Subject: [PATCH] * Don't assert out on too late results. --- src/libtomahawk/pipeline.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/libtomahawk/pipeline.cpp b/src/libtomahawk/pipeline.cpp index 839a55889..bbf93cd14 100644 --- a/src/libtomahawk/pipeline.cpp +++ b/src/libtomahawk/pipeline.cpp @@ -169,8 +169,7 @@ Pipeline::reportResults( QID qid, const QList< result_ptr >& results ) if ( !m_qids.contains( qid ) ) { - qDebug() << "reportResults called for unknown QID" << qid; - Q_ASSERT( false ); + qDebug() << "Result arrived too late for:" << qid; return; }