Merge pull request #12060 from mikaelh/stable13
Actually return the root folder when traversing up the tree
This commit is contained in:
commit
9223159d42
|
@ -266,7 +266,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 New Issue