1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-01 11:50:37 +02:00

Mention resolver who sent a result too late

This commit is contained in:
Uwe L. Korn
2014-04-05 17:45:24 +01:00
parent b5a56ed149
commit 9c9e1561a2

View File

@@ -333,8 +333,15 @@ Pipeline::reportResults( QID qid, const QList< result_ptr >& results )
if ( !d->running )
return;
if ( !d->qids.contains( qid ) )
{
if ( results.length() > 0 && results[0]->resolvedBy() != NULL )
{
tDebug() << "Result arrived too late for:" << qid << "by" << results[0]->resolvedBy()->name();
}
else
{
tDebug() << "Result arrived too late for:" << qid;
}
return;
}
const query_ptr& q = d->qids.value( qid );