webdav quota information contains the values for used and free - not total
This commit is contained in:
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']
|
||||
);
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue