don't increase the size of the users home folder twice

remotes/origin/stable45
Robin Appelman 13 years ago
parent 7139de2a6e
commit e65ea6a8b7
  1. 4
      lib/filecache/update.php

@ -174,7 +174,9 @@ class OC_FileCache_Update{
}else{
$size=OC_FileCache::scanFile($path, $root);
}
OC_FileCache::increaseSize(dirname($path), $size-$cachedSize, $root);
if($path !== '' and $path !== '/'){
OC_FileCache::increaseSize(dirname($path), $size-$cachedSize, $root);
}
}
/**

Loading…
Cancel
Save