1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-07-31 19:30:21 +02:00

* Don't cleanup scanning prematurely.

This commit is contained in:
Christian Muehlhaeuser
2012-11-15 13:24:19 +01:00
parent 430e733c0d
commit 5c0b8ad9b6
2 changed files with 2 additions and 3 deletions

View File

@@ -214,7 +214,6 @@ MusicScanner::scanFilePaths()
}
void
MusicScanner::postOps()
{
@@ -243,7 +242,8 @@ MusicScanner::postOps()
m_filesToDelete.clear();
}
cleanup();
if ( !m_cmdQueue )
cleanup();
}

View File

@@ -219,7 +219,6 @@ ScanManager::runFileScan( const QStringList &paths )
}
void
ScanManager::fileMtimesCheck( const QMap< QString, QMap< unsigned int, unsigned int > >& mtimes )
{