diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2016-11-29 22:01:04 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2016-11-29 22:01:04 +0100 |
commit | 2fd1cf2e92040cc795eded90ba1f05c7e8c5c767 (patch) | |
tree | 683e1e051fb2f7d18617d41629aedd69da059f7d /lib/private/Encryption | |
parent | 8d81b9e6eb9f27b8b95f17b86bd3b1bdfddc122d (diff) | |
download | nextcloud-server-2fd1cf2e92040cc795eded90ba1f05c7e8c5c767.tar.gz nextcloud-server-2fd1cf2e92040cc795eded90ba1f05c7e8c5c767.zip |
Ignore AppData in encryption wrapper
Fixes part of #2407
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'lib/private/Encryption')
-rw-r--r-- | lib/private/Encryption/Util.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/private/Encryption/Util.php b/lib/private/Encryption/Util.php index 0e8de5147e1..3afa1bb9596 100644 --- a/lib/private/Encryption/Util.php +++ b/lib/private/Encryption/Util.php @@ -97,6 +97,7 @@ class Util { $this->config = $config; $this->excludedPaths[] = 'files_encryption'; + $this->excludedPaths[] = 'appdata_' . $config->getSystemValue('instanceid', null); } /** |