Skip to content
Snippets Groups Projects
Commit 807740a0 authored by Florin Peter's avatar Florin Peter
Browse files

fix for losing mount point "/"

parent 01f1153b
No related branches found
No related tags found
No related merge requests found
...@@ -222,7 +222,10 @@ class Filesystem { ...@@ -222,7 +222,10 @@ class Filesystem {
return false; return false;
} }
self::$defaultInstance = new View($root); self::$defaultInstance = new View($root);
self::$mounts = new Mount\Manager();
if(!self::$mounts) {
self::$mounts = new Mount\Manager();
}
//load custom mount config //load custom mount config
self::initMountPoints($user); self::initMountPoints($user);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment