Fix typo in error message
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
This commit is contained in:
parent
c86e568a5d
commit
7c98fbb043
|
@ -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.');
|
$this->log->error('A private master key is available but the public key could not be found. This should never happen.');
|
||||||
return;
|
return;
|
||||||
} elseif (empty($privateMasterKey)) {
|
} 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;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue