ignore "Shared"-directory when calculating free space
This commit is contained in:
parent
405ac36e0c
commit
d496a5e19f
|
@ -55,7 +55,9 @@ class OC_FileProxy_Quota extends OC_FileProxy{
|
|||
*/
|
||||
private function getFreeSpace(){
|
||||
$rootInfo=OC_FileCache_Cached::get('');
|
||||
$sharedInfo=OC_FileCache_Cached::get('/Shared');
|
||||
$usedSpace=isset($rootInfo['size'])?$rootInfo['size']:0;
|
||||
$usedSpace=isset($sharedInfo['size'])?$rootInfo['size']-$sharedInfo['size']:$rootInfo['size'];
|
||||
$totalSpace=$this->getQuota();
|
||||
if($totalSpace==0){
|
||||
return 0;
|
||||
|
|
Loading…
Reference in New Issue