fix for webdav because initMounts() is triggered twice so we lost the root path
This commit is contained in:
parent
b3b6738d59
commit
58a8d67a9b
|
@ -236,8 +236,10 @@ class Filesystem {
|
||||||
}
|
}
|
||||||
|
|
||||||
static public function initMounts(){
|
static public function initMounts(){
|
||||||
|
if(!self::$mounts) {
|
||||||
self::$mounts = new Mount\Manager();
|
self::$mounts = new Mount\Manager();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Initialize system and personal mount points for a user
|
* Initialize system and personal mount points for a user
|
||||||
|
|
Loading…
Reference in New Issue