mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
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:
parent
85770f3b9f
commit
1cc1866ba3
1 changed files with 1 additions and 1 deletions
|
|
@ -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, '/'));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue