mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-08-06 14:16:32 +02:00
Mention resolver who sent a result too late
This commit is contained in:
@@ -334,7 +334,14 @@ Pipeline::reportResults( QID qid, const QList< result_ptr >& results )
|
|||||||
return;
|
return;
|
||||||
if ( !d->qids.contains( qid ) )
|
if ( !d->qids.contains( qid ) )
|
||||||
{
|
{
|
||||||
tDebug() << "Result arrived too late for:" << 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;
|
return;
|
||||||
}
|
}
|
||||||
const query_ptr& q = d->qids.value( qid );
|
const query_ptr& q = d->qids.value( qid );
|
||||||
|
Reference in New Issue
Block a user