Merge pull request #2350 from aschoenebeck/ignore_blacklisted_files

Filter display of blacklisted files
This commit is contained in:
Bernhard Posselt 2013-03-15 08:25:13 -07:00
commit ebb2cb3403
1 changed files with 1 additions and 0 deletions

View File

@ -151,6 +151,7 @@ class Scanner {
private function isIgnoredFile($file) {
if ($file === '.' || $file === '..'
|| pathinfo($file, PATHINFO_EXTENSION) === 'part'
|| \OC\Files\Filesystem::isFileBlacklisted($file)
) {
return true;
}