Skip to content

Commit

Permalink
Add back missing slash in LazyUserFolder path
Browse files Browse the repository at this point in the history
Signed-off-by: Côme Chilliet <[email protected]>
  • Loading branch information
come-nc authored May 9, 2023
1 parent 85770f3 commit 1cc1866
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/private/Files/Node/LazyUserFolder.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public function __construct(IRootFolder $rootFolder, IUser $user, IMountManager
}

public function get($path) {
return $this->root->get('/' . $this->user->getUID() . '/files' . ltrim($path, '/'));
return $this->root->get('/' . $this->user->getUID() . '/files/' . ltrim($path, '/'));
}

/**
Expand Down

0 comments on commit 1cc1866

Please sign in to comment.