summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2020-08-19 20:42:27 +0200
committerGitHub <noreply@github.com>2020-08-19 20:42:27 +0200
commit5a064ec28b05ab1976543a9a68a699fba5eb4af2 (patch)
treee55e45aae3f611949f2a265d4dba71b80ee5ab47 /apps
parent00e62171d22a65c552aaff85a61f38cae6166d15 (diff)
downloadnextcloud-server-5a064ec28b05ab1976543a9a68a699fba5eb4af2.tar.gz
nextcloud-server-5a064ec28b05ab1976543a9a68a699fba5eb4af2.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.php2
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;
}