aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/Files/Config/UserMountCache.php
diff options
context:
space:
mode:
authorJonas <jonas@freesources.org>2023-09-25 18:25:53 +0200
committerJonas <jonas@freesources.org>2023-10-23 20:50:24 +0200
commit7441ce2b11272c4401abcf5cb107d0c055b9dc99 (patch)
treec3f212a8eceec19fb9a31501558fc6d83f81f988 /lib/private/Files/Config/UserMountCache.php
parent9193d8be40d216c06919f9dc476b1fdc6a43c374 (diff)
downloadnextcloud-server-7441ce2b11272c4401abcf5cb107d0c055b9dc99.tar.gz
nextcloud-server-7441ce2b11272c4401abcf5cb107d0c055b9dc99.zip
enh(IMountManager): Add method to get MountPoint from CachedMountInfo
Signed-off-by: Jonas <jonas@freesources.org>
Diffstat (limited to 'lib/private/Files/Config/UserMountCache.php')
-rw-r--r--lib/private/Files/Config/UserMountCache.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Files/Config/UserMountCache.php b/lib/private/Files/Config/UserMountCache.php
index 8a6b818d413..7502d65d044 100644
--- a/lib/private/Files/Config/UserMountCache.php
+++ b/lib/private/Files/Config/UserMountCache.php
@@ -463,7 +463,7 @@ class UserMountCache implements IUserMountCache {
}, $mounts);
$mounts = array_combine($mountPoints, $mounts);
- $current = $path;
+ $current = rtrim($path, '/');
// walk up the directory tree until we find a path that has a mountpoint set
// the loop will return if a mountpoint is found or break if none are found
while (true) {