1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-11 16:44:05 +02:00

* Fixed another pipeline bug.

This commit is contained in:
Christian Muehlhaeuser
2011-07-20 04:25:44 +02:00
parent 9b8d69a21f
commit efd7911efc

View File

@@ -271,8 +271,6 @@ Pipeline::timeoutShunt( const query_ptr& q )
{
qDebug() << "Reached end of pipeline for:" << q->toString();
setQIDState( q, 0 );
if ( !m_queries_temporary.contains( q ) )
m_qids.remove( q->id() );
}
}
@@ -302,8 +300,6 @@ Pipeline::shunt( const query_ptr& q )
{
qDebug() << "Reached end of pipeline for:" << q->toString();
setQIDState( q, 0 );
if ( !m_queries_temporary.contains( q ) )
m_qids.remove( q->id() );
q->onResolvingFinished();
}