From 40439140ff448237e642cee23d5ceee769eefc8c Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Wed, 19 Aug 2020 20:42:27 +0200 Subject: [PATCH] Fix typo in error message Signed-off-by: Morris Jobke --- apps/encryption/lib/KeyManager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/encryption/lib/KeyManager.php b/apps/encryption/lib/KeyManager.php index 28cf7efa60c..7afe16e9f73 100644 --- a/apps/encryption/lib/KeyManager.php +++ b/apps/encryption/lib/KeyManager.php @@ -228,7 +228,7 @@ class KeyManager { $this->log->error('A private master key is available but the public key could not be found. This should never happen.'); return; } elseif (empty($privateMasterKey)) { - $this->log->error('A private master key is available but the public key could not be found. This should never happen.'); + $this->log->error('A public master key is available but the private key could not be found. This should never happen.'); return; }