diff options
author | J0WI <J0WI@users.noreply.github.com> | 2022-12-04 21:36:10 +0100 |
---|---|---|
committer | J0WI <J0WI@users.noreply.github.com> | 2022-12-05 14:30:58 +0100 |
commit | 71e490090f52bc9b12f7b07f002846518326be38 (patch) | |
tree | a147ce857b2131cc53e82854e518d69145a35bff /apps/encryption/lib/Command/FixEncryptedVersion.php | |
parent | e36e92bacefeac0cf28888b3e528ab97cbc2ed9f (diff) | |
download | nextcloud-server-71e490090f52bc9b12f7b07f002846518326be38.tar.gz nextcloud-server-71e490090f52bc9b12f7b07f002846518326be38.zip |
Replace getSystemValue in encryption app
Signed-off-by: J0WI <J0WI@users.noreply.github.com>
Diffstat (limited to 'apps/encryption/lib/Command/FixEncryptedVersion.php')
-rw-r--r-- | apps/encryption/lib/Command/FixEncryptedVersion.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/encryption/lib/Command/FixEncryptedVersion.php b/apps/encryption/lib/Command/FixEncryptedVersion.php index ab9cc528c54..cace88476f8 100644 --- a/apps/encryption/lib/Command/FixEncryptedVersion.php +++ b/apps/encryption/lib/Command/FixEncryptedVersion.php @@ -95,7 +95,7 @@ class FixEncryptedVersion extends Command { } protected function execute(InputInterface $input, OutputInterface $output): int { - $skipSignatureCheck = $this->config->getSystemValue('encryption_skip_signature_check', false); + $skipSignatureCheck = $this->config->getSystemValueBool('encryption_skip_signature_check', false); $this->supportLegacy = $this->config->getSystemValueBool('encryption.legacy_format_support', false); if ($skipSignatureCheck) { |