Skip to content

Commit ff66c51

Browse files
committed
fix: fix LazyUserFolder::getMountPoint
Signed-off-by: Robin Appelman <robin@icewind.nl>
1 parent 02b6245 commit ff66c51

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/private/Files/Node/LazyUserFolder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public function getMountPoint() {
7070
if ($this->folder !== null) {
7171
return $this->folder->getMountPoint();
7272
}
73-
$mountPoint = $this->mountManager->find('/' . $this->user->getUID());
73+
$mountPoint = $this->mountManager->find($this->path);
7474
if (is_null($mountPoint)) {
7575
throw new \Exception('No mountpoint for user folder');
7676
}

0 commit comments

Comments
 (0)