Skip to content
Snippets Groups Projects
Commit ebb2cb34 authored by Bernhard Posselt's avatar Bernhard Posselt
Browse files

Merge pull request #2350 from aschoenebeck/ignore_blacklisted_files

Filter display of blacklisted files
parents 761540e7 387be374
Branches
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment