Merge pull request #1348 from karakayasemi/patch-1

Bug fix CachedMountInfo for user home storage
This commit is contained in:
Roeland Jago Douma 2016-09-13 21:55:14 +02:00 committed by GitHub
commit edb4a680e0
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ class CachedMountInfo implements ICachedMountInfo {
// TODO injection etc
Filesystem::initMountPoints($this->getUser()->getUID());
$userNode = \OC::$server->getUserFolder($this->getUser()->getUID());
$nodes = $userNode->getById($this->getRootId());
$nodes = $userNode->getParent()->getById($this->getRootId());
if (count($nodes) > 0) {
return $nodes[0];
} else {