1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-20 07:49:42 +01:00

* Don't assert out on too late results.

This commit is contained in:
Christian Muehlhaeuser 2011-08-23 18:15:23 +02:00
parent 41f3193355
commit c9bf3035f2

View File

@ -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;
}