Fix typo in error message

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
This commit is contained in:
Morris Jobke 2020-08-19 20:42:27 +02:00 committed by backportbot[bot]
parent c86e568a5d
commit 7c98fbb043
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}