diff options
author | Lukas Reschke <lukas@owncloud.com> | 2016-03-03 13:46:41 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2016-03-03 13:46:41 +0100 |
commit | e55c52c07809d9bbcc386d4d473b4b1e9f49628c (patch) | |
tree | abdb87780b0be5debf261736d9cf54403e2dcea3 | |
parent | 4f25f341788b3edad1bf4baf739cd632785c9abb (diff) | |
download | nextcloud-server-e55c52c07809d9bbcc386d4d473b4b1e9f49628c.tar.gz nextcloud-server-e55c52c07809d9bbcc386d4d473b4b1e9f49628c.zip |
Exclude the assets folder from integrity check
We should not scan the assets folder as this can contain user specific content. Partially addresses https://github.com/owncloud/core/issues/22803
-rw-r--r-- | lib/private/integritycheck/iterator/excludefoldersbypathfilteriterator.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/private/integritycheck/iterator/excludefoldersbypathfilteriterator.php b/lib/private/integritycheck/iterator/excludefoldersbypathfilteriterator.php index fc261e4bc5a..766897e7517 100644 --- a/lib/private/integritycheck/iterator/excludefoldersbypathfilteriterator.php +++ b/lib/private/integritycheck/iterator/excludefoldersbypathfilteriterator.php @@ -35,8 +35,9 @@ class ExcludeFoldersByPathFilterIterator extends \RecursiveFilterIterator { $excludedFolders = [ rtrim($root . '/data', '/'), rtrim($root .'/themes', '/'), - rtrim($root.'/config', '/'), - rtrim($root.'/apps', '/'), + rtrim($root . '/config', '/'), + rtrim($root . '/apps', '/'), + rtrim($root . '/assets', '/'), ]; $customDataDir = \OC::$server->getConfig()->getSystemValue('datadirectory', ''); if($customDataDir !== '') { |