webdav quota information contains the values for used and free - not total

remotes/origin/stable6
Thomas Müller 2013-08-29 10:49:50 +07:00
parent ea6e74ca95
commit 301cce54cc
1 changed files with 1 additions and 1 deletions

@ -236,7 +236,7 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa
$storageInfo = OC_Helper::getStorageInfo($this->path);
return array(
$storageInfo['used'],
$storageInfo['total']
$storageInfo['free']
);
}