Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2021-08-18 15:27:03 +0300
committerJulius Härtl <jus@bitgrid.net>2021-08-26 23:36:26 +0300
commit3b6be677191f3ee34b86b4c06c3c13931edc099f (patch)
tree347989f69e18e3332ede07774d63703763aa38b1 /core/register_command.php
parentfd93aa816231954ca628daa85bd091fd6ff3a570 (diff)
Align occ status with status.php
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'core/register_command.php')
-rw-r--r--core/register_command.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/register_command.php b/core/register_command.php
index 526707b004d..c110a0a3155 100644
--- a/core/register_command.php
+++ b/core/register_command.php
@@ -51,7 +51,7 @@ declare(strict_types=1);
use Psr\Log\LoggerInterface;
$application->add(new \Stecman\Component\Symfony\Console\BashCompletion\CompletionCommand());
-$application->add(new OC\Core\Command\Status);
+$application->add(new OC\Core\Command\Status(\OC::$server->get(\OCP\IConfig::class), \OC::$server->get(\OCP\Defaults::class)));
$application->add(new OC\Core\Command\Check(\OC::$server->getSystemConfig()));
$application->add(new OC\Core\Command\App\CheckCode());
$application->add(new OC\Core\Command\L10n\CreateJs());