summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2021-01-15 16:29:54 +0100
committerJoas Schilling <coding@schilljs.com>2021-01-18 11:32:50 +0100
commitf319660f60c9e7d863cec65c983ca24800a6d3ed (patch)
treef364ba220b11dd75432d68098bcc00c804a42ab6 /core
parent6d291c3c1934e97914a9c22e66355769efe3f6d0 (diff)
downloadnextcloud-server-f319660f60c9e7d863cec65c983ca24800a6d3ed.tar.gz
nextcloud-server-f319660f60c9e7d863cec65c983ca24800a6d3ed.zip
Force run the verification of the signature on occ
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'core')
-rw-r--r--core/Command/Integrity/CheckApp.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Command/Integrity/CheckApp.php b/core/Command/Integrity/CheckApp.php
index 7bf92001cc8..b95d879941e 100644
--- a/core/Command/Integrity/CheckApp.php
+++ b/core/Command/Integrity/CheckApp.php
@@ -70,7 +70,7 @@ class CheckApp extends Base {
protected function execute(InputInterface $input, OutputInterface $output): int {
$appid = $input->getArgument('appid');
$path = (string)$input->getOption('path');
- $result = $this->checker->verifyAppSignature($appid, $path);
+ $result = $this->checker->verifyAppSignature($appid, $path, true);
$this->writeArrayInOutputFormat($input, $output, $result);
if (count($result) > 0) {
return 1;