Revert to not scanning hidden directories.

This commit is contained in:
John Maguire 2011-05-13 16:56:42 +00:00
parent dbde7ae118
commit c9a0318553
1 changed files with 1 additions and 1 deletions

View File

@ -250,7 +250,7 @@ void LibraryWatcher::ScanSubdirectory(
// First we "quickly" get a list of the files in the directory that we
// think might be music. While we're here, we also look for new subdirectories
// and possible album artwork.
QDirIterator it(path, QDir::Dirs | QDir::Files | QDir::NoDotAndDotDot | QDir::Hidden);
QDirIterator it(path, QDir::Dirs | QDir::Files | QDir::NoDotAndDotDot);
while (it.hasNext()) {
if (stop_requested_) return;