diff options
author | Morris Jobke <hey@morrisjobke.de> | 2020-08-19 20:42:27 +0200 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2020-10-28 14:14:03 +0000 |
commit | 7c98fbb043cb9c7456fa34d6e269371ff4bb110e (patch) | |
tree | 35134ef8b2f36e11c30bd4a02f2ca4be9b6175d9 /apps | |
parent | c86e568a5dfdf9f3a37aab186a2a339b549e5f6f (diff) | |
download | nextcloud-server-7c98fbb043cb9c7456fa34d6e269371ff4bb110e.tar.gz nextcloud-server-7c98fbb043cb9c7456fa34d6e269371ff4bb110e.zip |
Fix typo in error message
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/encryption/lib/KeyManager.php | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |