diff --git a/lib/files/storage/wrapper/quota.php b/lib/files/storage/wrapper/quota.php index bc2d893976..e2da8cf2e0 100644 --- a/lib/files/storage/wrapper/quota.php +++ b/lib/files/storage/wrapper/quota.php @@ -48,7 +48,7 @@ class Quota extends Wrapper { return \OC\Files\SPACE_NOT_COMPUTED; } else { $free = $this->storage->free_space($path); - return min($free, ($this->quota - $used)); + return min($free, (max($this->quota - $used, 0))); } } }