Allow chunked uploads even if your quota is not sufficient
Fixes #11485 This allows uploads to shared folders. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
parent
410bd9d784
commit
0fb070b5b4
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ class Quota extends Wrapper {
|
|||
* @return int
|
||||
*/
|
||||
public function free_space($path) {
|
||||
if ($this->quota < 0 || strpos($path, 'cache') === 0) {
|
||||
if ($this->quota < 0 || strpos($path, 'cache') === 0 || strpos($path, 'uploads') === 0) {
|
||||
return $this->storage->free_space($path);
|
||||
} else {
|
||||
$used = $this->getSize($this->sizeRoot);
|
||||
|
|
Loading…
Reference in a new issue