1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-01 03:40:16 +02:00

Fix missing call to postOps after file scans

This commit is contained in:
Jeff Mitchell
2012-06-30 16:58:25 -04:00
parent ba54b5ce8e
commit 1a333d85d6

View File

@@ -209,6 +209,8 @@ MusicScanner::scanFilePaths()
if ( fi.exists() && fi.isReadable() ) if ( fi.exists() && fi.isReadable() )
scanFile( fi ); scanFile( fi );
} }
QMetaObject::invokeMethod( this, "postOps", Qt::QueuedConnection );
} }