Skip to content

Commit

Permalink
Fix typo in error message
Browse files Browse the repository at this point in the history
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
  • Loading branch information
MorrisJobke authored Aug 19, 2020
1 parent 00e6217 commit 5a064ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/encryption/lib/KeyManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ public function validateMasterKey() {
$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;
}

Expand Down

0 comments on commit 5a064ec

Please sign in to comment.