Merge pull request #9321 from nextcloud/bugfix/noid/return_root_folder_when_at_root
Actually return the root folder when traversing up the tree
This commit is contained in:
commit
7306d30708
1 changed files with 5 additions and 1 deletions
|
@ -265,7 +265,11 @@ class Node implements \OCP\Files\Node {
|
||||||
* @return Node
|
* @return Node
|
||||||
*/
|
*/
|
||||||
public function getParent() {
|
public function getParent() {
|
||||||
return $this->root->get(dirname($this->path));
|
$newPath = dirname($this->path);
|
||||||
|
if ($newPath === '' || $newPath === '.' || $newPath === '/') {
|
||||||
|
return $this->root;
|
||||||
|
}
|
||||||
|
return $this->root->get($newPath);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue