Don't throw insufficient storage exception if free space is unknown

This commit is contained in:
Michael Gapczynski 2013-02-23 15:37:44 -05:00
parent a417028ccd
commit a2d3333a09
1 changed files with 2 additions and 1 deletions

View File

@ -50,7 +50,8 @@ class OC_Connector_Sabre_QuotaPlugin extends Sabre_DAV_ServerPlugin {
$uri='/'.$uri;
}
list($parentUri, $newName) = Sabre_DAV_URLUtil::splitPath($uri);
if ($length > \OC\Files\Filesystem::free_space($parentUri)) {
$freeSpace = \OC\Files\Filesystem::free_space($parentUri);
if ($freeSpace !== \OC\Files\FREE_SPACE_UNKNOWN && $length > \OC\Files\Filesystem::free_space($parentUri)) {
throw new Sabre_DAV_Exception_InsufficientStorage();
}
}