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

remotes/origin/stable6
Thomas Müller 12 years ago
parent ea6e74ca95
commit 301cce54cc
  1. 2
      lib/connector/sabre/directory.php

@ -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…
Cancel
Save