mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Fix ListCommand constructor call in register_command
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
This commit is contained in:
parent
50a7f612d9
commit
3cf8c63409
1 changed files with 1 additions and 1 deletions
|
|
@ -90,7 +90,7 @@ if (\OC::$server->getConfig()->getSystemValue('installed', false)) {
|
|||
$application->add(new OC\Core\Command\Background\WebCron(\OC::$server->getConfig()));
|
||||
$application->add(new OC\Core\Command\Background\Ajax(\OC::$server->getConfig()));
|
||||
$application->add(new OC\Core\Command\Background\Job(\OC::$server->getJobList(), \OC::$server->getLogger()));
|
||||
$application->add(new OC\Core\Command\Background\ListCommand(\OC::$server->getJobList(), \OC::$server->getLogger()));
|
||||
$application->add(new OC\Core\Command\Background\ListCommand(\OC::$server->getJobList()));
|
||||
|
||||
$application->add(\OC::$server->query(\OC\Core\Command\Broadcast\Test::class));
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue