Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorkorelstar <korelstar@users.noreply.github.com>2020-07-17 15:14:51 +0300
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2020-09-17 10:13:27 +0300
commit10c0ed6cee70dee49b6f83f689eea86484bc53bc (patch)
treec93a7fc53e991d4eb0c14640334eb3f201fc9874 /lib
parent049e20b6cd1c6fa0deb86cbd5f2a33ed7215db2b (diff)
fix: file quota was not applied in all cases
Diffstat (limited to 'lib')
-rw-r--r--lib/private/Files/Filesystem.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/Files/Filesystem.php b/lib/private/Files/Filesystem.php
index 4b04656f49b..daf5a7243e2 100644
--- a/lib/private/Files/Filesystem.php
+++ b/lib/private/Files/Filesystem.php
@@ -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