diff options
author | Jasper Knockaert <jasper@knockaert.nl> | 2021-01-16 14:49:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-16 14:49:53 +0100 |
commit | 40fde94b4d019f5c1914225d5be6854241abeb9c (patch) | |
tree | ab1440f16103cea2daf8be7468e84698d5981522 /lib | |
parent | 252d1ae512eef3c093cfe05fe63783ffca2b3bc5 (diff) | |
download | nextcloud-server-40fde94b4d019f5c1914225d5be6854241abeb9c.tar.gz nextcloud-server-40fde94b4d019f5c1914225d5be6854241abeb9c.zip |
fix even more brackets
Signed-off-by: Jasper Knockaert jasper@knockaert.nl
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/Files/Storage/Wrapper/Encryption.php | 2 |
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'; } } |