diff --git a/apps/encryption/lib/KeyManager.php b/apps/encryption/lib/KeyManager.php index c504e70ba51..5292c0b746c 100644 --- a/apps/encryption/lib/KeyManager.php +++ b/apps/encryption/lib/KeyManager.php @@ -137,7 +137,7 @@ class KeyManager { $masterKey = $this->getSystemPrivateKey($this->masterKeyId); $decryptedMasterKey = $this->crypt->decryptPrivateKey($masterKey, $this->getMasterKeyPassword(), $this->masterKeyId); if ($decryptedMasterKey === false) { - $this->logger->error('A public master key is available but the decryption failed. This should never happen.'); + $this->logger->error('A public master key is available but decrypting it failed. This should never happen.'); } else { $this->session->setPrivateKey($decryptedMasterKey); }