diff options
author | Bart Visscher <bartv@thisnet.nl> | 2012-06-15 17:04:37 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2012-06-15 21:21:42 +0200 |
commit | 27efdbd58f284c054ae9150ff2a2b0dcb5fab70f (patch) | |
tree | 5156e40813b6c9d3ddbe2ef5671fb762132c3ad8 /lib/connector/sabre/directory.php | |
parent | f06c08a63742de9adea4a146a4480b71ad254f20 (diff) | |
download | nextcloud-server-27efdbd58f284c054ae9150ff2a2b0dcb5fab70f.tar.gz nextcloud-server-27efdbd58f284c054ae9150ff2a2b0dcb5fab70f.zip |
Use setter for FileinfoCache
Diffstat (limited to 'lib/connector/sabre/directory.php')
-rw-r--r-- | lib/connector/sabre/directory.php | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/connector/sabre/directory.php b/lib/connector/sabre/directory.php index 5aa70392d76..6af4dd36562 100644 --- a/lib/connector/sabre/directory.php +++ b/lib/connector/sabre/directory.php @@ -69,15 +69,13 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa if (!$info) throw new Sabre_DAV_Exception_NotFound('File with name ' . $path . ' could not be located'); if ($info['mimetype'] == 'httpd/unix-directory') { - - return new OC_Connector_Sabre_Directory($path, $info); - + $node = new OC_Connector_Sabre_Directory($path); } else { - - return new OC_Connector_Sabre_File($path, $info); - + $node = new OC_Connector_Sabre_File($path); } + $node->setFileinfoCache($info); + return $node; } /** |