Browse Source
ensure we setup the mount manager when in lockdown
Signed-off-by: Robin Appelman <robin@icewind.nl>
pull/2167/head
Robin Appelman
9 years ago
No known key found for this signature in database
GPG Key ID: 425003AC385454C5
1 changed files with
2 additions and
2 deletions
-
lib/private/Files/Filesystem.php
|
|
|
@ -448,11 +448,11 @@ class Filesystem { |
|
|
|
|
|
|
|
self::listenForNewMountProviders($mountConfigManager, $userManager); |
|
|
|
} else { |
|
|
|
self::$mounts->addMount(new MountPoint( |
|
|
|
self::getMountManager()->addMount(new MountPoint( |
|
|
|
new NullStorage([]), |
|
|
|
'/' . $user |
|
|
|
)); |
|
|
|
self::$mounts->addMount(new MountPoint( |
|
|
|
self::getMountManager()->addMount(new MountPoint( |
|
|
|
new NullStorage([]), |
|
|
|
'/' . $user . '/files' |
|
|
|
)); |
|
|
|
|