Skip to content

Commit

Permalink
Always check new sig for server releases
Browse files Browse the repository at this point in the history
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
  • Loading branch information
rullzer committed Dec 16, 2020
1 parent 1a32325 commit 17b1392
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions lib/private/IntegrityCheck/Checker.php
Original file line number Diff line number Diff line change
Expand Up @@ -587,9 +587,10 @@ public function verifyAppSignature(string $appId, string $path = ''): array {
public function verifyCoreSignature(): array {
try {
$result = $this->verify(
$this->environmentHelper->getServerRoot() . '/core/signature.json',
$this->environmentHelper->getServerRoot(),
'core'
$this->environmentHelper->getServerRoot() . '/core/signature.json',
$this->environmentHelper->getServerRoot(),
'core',
true
);
} catch (\Exception $e) {
$result = [
Expand Down

0 comments on commit 17b1392

Please sign in to comment.