1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-05 00:22:31 +02:00

Don't blindly queue scan paths, there may be some queued

This commit is contained in:
Jeff Mitchell 2012-06-30 16:51:26 -04:00
parent 4b6e1ea0d7
commit ba54b5ce8e

View File

@ -277,8 +277,13 @@ ScanManager::scannerFinished()
m_musicScannerThreadController = 0;
}
switch ( m_queuedScanType ) {
SourceList::instance()->getLocal()->scanningFinished( 0 );
emit finished();
if ( !m_queuedScanType == File )
m_currScannerPaths.clear();
switch ( m_queuedScanType )
{
case Full:
case Normal:
QMetaObject::invokeMethod( this, "runNormalScan", Qt::QueuedConnection, Q_ARG( bool, m_queuedScanType == Full ) );
@ -289,10 +294,7 @@ ScanManager::scannerFinished()
default:
break;
}
m_queuedScanType = None;
m_scanTimer->start();
m_currScannerPaths.clear();
SourceList::instance()->getLocal()->scanningFinished( 0 );
emit finished();
}