use correct path for property cache (the real path of the file and not the virtual path in the shared folder

This commit is contained in:
Björn Schießle 2012-11-20 10:24:32 +01:00
parent 326496ff80
commit 2854ee56e9
1 changed files with 1 additions and 1 deletions

View File

@ -146,7 +146,7 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa
$nodes = array();
foreach($folder_content as $info) {
$node = $this->getChild($info['name'], $info);
$node->setPropertyCache($properties[$this->path.'/'.$info['name']]);
$node->setPropertyCache($properties[$path.'/'.$info['name']]);
$nodes[] = $node;
}
return $nodes;