mirror of
https://github.com/nextcloud/server.git
synced 2026-04-21 14:23:17 -04:00
Merge pull request #21894 from nextcloud/fix-file-quota
fix: file quota was not applied in all cases
This commit is contained in:
commit
df857604d5
1 changed files with 2 additions and 2 deletions
|
|
@ -437,13 +437,13 @@ class Filesystem {
|
|||
|
||||
// home mounts are handled seperate since we need to ensure this is mounted before we call the other mount providers
|
||||
$homeMount = $mountConfigManager->getHomeMountForUser($userObject);
|
||||
self::getMountManager()->addMount($homeMount);
|
||||
|
||||
if ($homeMount->getStorageRootId() === -1) {
|
||||
$homeMount->getStorage()->mkdir('');
|
||||
$homeMount->getStorage()->getScanner()->scan('');
|
||||
}
|
||||
|
||||
self::getMountManager()->addMount($homeMount);
|
||||
|
||||
\OC\Files\Filesystem::getStorage($user);
|
||||
|
||||
// Chance to mount for other storages
|
||||
|
|
|
|||
Loading…
Reference in a new issue