Add back missing slash in LazyUserFolder path

Signed-off-by: Côme Chilliet <91878298+come-nc@users.noreply.github.com>
This commit is contained in:
Côme Chilliet 2023-05-09 10:59:31 +02:00 committed by GitHub
parent 85770f3b9f
commit 1cc1866ba3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -70,7 +70,7 @@ class LazyUserFolder extends LazyFolder {
}
public function get($path) {
return $this->root->get('/' . $this->user->getUID() . '/files' . ltrim($path, '/'));
return $this->root->get('/' . $this->user->getUID() . '/files/' . ltrim($path, '/'));
}
/**