Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2017-06-14 10:50:14 +0300
committerGitHub <noreply@github.com>2017-06-14 10:50:14 +0300
commitc6cd90f18c1445293a2be38c9cf1f1941ba9e9e6 (patch)
treea2471ac246b07370fb3d8c07a937d355d245ca68
parentb7c6586c8d0b1f6643b708a0922118d2db6d1fee (diff)
parentf8addd4cf9ff9450a50651b2c0eefd808831ee73 (diff)
Merge pull request #5363 from nextcloud/exclude-files-external-dir-from-encryption-stable11
[stable11] don't try to encrypt/decrypt the certificate bundle
-rw-r--r--lib/private/Encryption/Util.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/private/Encryption/Util.php b/lib/private/Encryption/Util.php
index 3afa1bb9596..2a4adc0281c 100644
--- a/lib/private/Encryption/Util.php
+++ b/lib/private/Encryption/Util.php
@@ -98,6 +98,7 @@ class Util {
$this->excludedPaths[] = 'files_encryption';
$this->excludedPaths[] = 'appdata_' . $config->getSystemValue('instanceid', null);
+ $this->excludedPaths[] = 'files_external';
}
/**