mirror of
https://github.com/nextcloud/server.git
synced 2026-06-12 18:21:40 -04:00
Merge pull request #22900 from nextcloud/backport/21894/stable18
[stable18] fix: file quota was not applied in all cases
This commit is contained in:
commit
be1bcacced
1 changed files with 2 additions and 2 deletions
|
|
@ -438,13 +438,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