summaryrefslogtreecommitdiffstats
path: root/core/register_command.php
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2013-12-24 13:36:32 +0100
committerBart Visscher <bartv@thisnet.nl>2013-12-24 13:36:32 +0100
commit202e26647e534065271db153fde7207922fa2ecd (patch)
treee7ade7785b3a1e457669a9f78ecfda4f6af478b8 /core/register_command.php
parent731e83c35a11657248f1d73c0a68e74573a1c3e8 (diff)
downloadnextcloud-server-202e26647e534065271db153fde7207922fa2ecd.tar.gz
nextcloud-server-202e26647e534065271db153fde7207922fa2ecd.zip
Inject config object
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 419747ebb44..350a817c02a 100644
--- a/core/register_command.php
+++ b/core/register_command.php
@@ -9,7 +9,7 @@
/** @var $application Symfony\Component\Console\Application */
$application->add(new OC\Core\Command\Status);
$application->add(new OC\Core\Command\Db\GenerateChangeScript());
-$application->add(new OC\Core\Command\Db\ConvertFromSqlite());
+$application->add(new OC\Core\Command\Db\ConvertFromSqlite(OC_Config::getObject()));
$application->add(new OC\Core\Command\Upgrade());
$application->add(new OC\Core\Command\Maintenance\SingleUser());
$application->add(new OC\Core\Command\App\Disable());