mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-03-21 16:29:43 +01:00
Mention resolver who sent a result too late
This commit is contained in:
parent
b5a56ed149
commit
9c9e1561a2
@ -334,7 +334,14 @@ Pipeline::reportResults( QID qid, const QList< result_ptr >& results )
|
||||
return;
|
||||
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;
|
||||
}
|
||||
const query_ptr& q = d->qids.value( qid );
|
||||
|
Loading…
x
Reference in New Issue
Block a user