Browse Source

Do not setup the default FS on normal routes

This should help with load times hopefully. Only initialize the FS if we
actually ned it.

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
tags/v21.0.0beta1
Roeland Jago Douma 3 years ago
parent
commit
48d843858d
No account linked to committer's email address
2 changed files with 1 additions and 1 deletions
  1. 1
    0
      apps/files/lib/Controller/ViewController.php
  2. 0
    1
      lib/base.php

+ 1
- 0
apps/files/lib/Controller/ViewController.php View File

@@ -134,6 +134,7 @@ class ViewController extends Controller {
* @throws \OCP\Files\NotFoundException
*/
protected function getStorageInfo() {
\OC_Util::setupFS();
$dirInfo = \OC\Files\Filesystem::getFileInfo('/', false);

return \OC_Helper::getStorageInfo('/', $dirInfo);

+ 0
- 1
lib/base.php View File

@@ -1006,7 +1006,6 @@ class OC {
OC_App::loadApps(['filesystem', 'logging']);
OC_App::loadApps();
}
OC_Util::setupFS();
OC::$server->getRouter()->match(\OC::$server->getRequest()->getRawPathInfo());
return;
} catch (Symfony\Component\Routing\Exception\ResourceNotFoundException $e) {

Loading…
Cancel
Save