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:
authorJasper Knockaert <jasper@knockaert.nl>2021-01-16 16:49:53 +0300
committerGitHub <noreply@github.com>2021-01-16 16:49:53 +0300
commit40fde94b4d019f5c1914225d5be6854241abeb9c (patch)
treeab1440f16103cea2daf8be7468e84698d5981522 /lib/private/Files/Storage
parent252d1ae512eef3c093cfe05fe63783ffca2b3bc5 (diff)
fix even more brackets
Signed-off-by: Jasper Knockaert jasper@knockaert.nl
Diffstat (limited to 'lib/private/Files/Storage')
-rw-r--r--lib/private/Files/Storage/Wrapper/Encryption.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Files/Storage/Wrapper/Encryption.php b/lib/private/Files/Storage/Wrapper/Encryption.php
index 5505a61ead2..4ac10923968 100644
--- a/lib/private/Files/Storage/Wrapper/Encryption.php
+++ b/lib/private/Files/Storage/Wrapper/Encryption.php
@@ -941,7 +941,7 @@ class Encryption extends Wrapper {
// if the header doesn't contain a encryption module we check if it is a
// legacy file. If true, we add the default encryption module
- if (!isset($result[Util::HEADER_ENCRYPTION_MODULE_KEY] && (!empty($result) || $exists)) {
+ if (!isset($result[Util::HEADER_ENCRYPTION_MODULE_KEY]) && (!empty($result) || $exists)) {
$result[Util::HEADER_ENCRYPTION_MODULE_KEY] = 'OC_DEFAULT_MODULE';
}
}