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:
authorBart Visscher <bartv@thisnet.nl>2013-09-02 20:18:12 +0400
committerBart Visscher <bartv@thisnet.nl>2013-09-02 20:18:12 +0400
commitcafc8cb22347f0c861bbc333354e2766779e065d (patch)
treece88fadaa35023a582d1bd42146f72d2b2a869d1 /console.php
parent0aba549e7f11e1035fa7a2e880803b47cbadd919 (diff)
Change Files Scan command to use OC\User\Manager
Diffstat (limited to 'console.php')
-rw-r--r--console.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/console.php b/console.php
index 9639f60b7ac..11df7eb0dc9 100644
--- a/console.php
+++ b/console.php
@@ -27,5 +27,5 @@ if (!OC::$CLI) {
$defaults = new OC_Defaults;
$application = new Application($defaults->getName(), \OC_Util::getVersionString());
$application->add(new OC\Core\Command\Status);
-$application->add(new OCA\Files\Command\Scan);
+$application->add(new OCA\Files\Command\Scan(OC_User::getManager()));
$application->run();