Return unknown freespace if the free_space call failed

Fixes #2312
This commit is contained in:
Robin Appelman 2013-03-14 17:00:30 +01:00
parent abe408e934
commit ed83597371
1 changed files with 5 additions and 1 deletions

View File

@ -218,7 +218,11 @@ class Local extends \OC\Files\Storage\Common{
}
public function free_space($path) {
return @disk_free_space($this->datadir.$path);
$space = @disk_free_space($this->datadir.$path);
if($space === false){
return \OC\Files\FREE_SPACE_UNKNOWN;
}
return $space;
}
public function search($query) {