Skip to content
Snippets Groups Projects
Commit 0810f928 authored by Michael Gapczynski's avatar Michael Gapczynski
Browse files

Fix used space calculation if shared folder does not exist, fixes bug oc-1331

parent 6c92a85d
No related branches found
No related tags found
No related merge requests found
......@@ -18,7 +18,12 @@ OC_App::setActiveNavigationEntry( 'personal' );
// calculate the disc space
$rootInfo=OC_FileCache::get('');
$sharedInfo=OC_FileCache::get('/Shared');
$used=$rootInfo['size']-$sharedInfo['size'];
if (!isset($sharedInfo)) {
$sharedSize = 0;
} else {
$sharedSize = $sharedInfo['size'];
}
$used=$rootInfo['size']-$sharedSize;
$free=OC_Filesystem::free_space();
$total=$free+$used;
if($total==0) $total=1; // prevent division by zero
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment