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

This commit is contained in:
Thomas Müller 2013-08-29 10:49:50 +02:00
parent ea6e74ca95
commit 301cce54cc

View file

@ -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']
);
}