From: Morris Jobke Date: Wed, 19 Aug 2020 18:42:27 +0000 (+0200) Subject: Fix typo in error message X-Git-Tag: v20.0.0beta1~36^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=5a064ec28b05ab1976543a9a68a699fba5eb4af2;p=nextcloud-server.git Fix typo in error message Signed-off-by: Morris Jobke --- diff --git a/apps/encryption/lib/KeyManager.php b/apps/encryption/lib/KeyManager.php index 0cc29a6a6ab..b5c98bddf1a 100644 --- a/apps/encryption/lib/KeyManager.php +++ b/apps/encryption/lib/KeyManager.php @@ -227,7 +227,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; }