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 GitHub
parent 00e62171d2
commit 5a064ec28b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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