summaryrefslogtreecommitdiffstats
path: root/lib/private/Files/Mount
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2022-03-08 17:14:15 +0100
committerRobin Appelman <robin@icewind.nl>2022-03-24 17:01:46 +0100
commit19c64cf8b6782cf69b8e7330f27580451a8965e7 (patch)
tree4848145a7efbe472206f39c40dfd057440217779 /lib/private/Files/Mount
parent55d943fd4b35c9df3e3639d6f264e4f8d8df82f0 (diff)
downloadnextcloud-server-19c64cf8b6782cf69b8e7330f27580451a8965e7.tar.gz
nextcloud-server-19c64cf8b6782cf69b8e7330f27580451a8965e7.zip
setup only relevant mounts when possible
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'lib/private/Files/Mount')
-rw-r--r--lib/private/Files/Mount/Manager.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Files/Mount/Manager.php b/lib/private/Files/Mount/Manager.php
index 66832690363..ecd97760f17 100644
--- a/lib/private/Files/Mount/Manager.php
+++ b/lib/private/Files/Mount/Manager.php
@@ -125,7 +125,7 @@ class Manager implements IMountManager {
* @return IMountPoint[]
*/
public function findIn(string $path): array {
- $this->setupManager->setupForPath($path);
+ $this->setupManager->setupForPath($path, true);
$path = $this->formatPath($path);
if (isset($this->inPathCache[$path])) {