Fix uploading when free space is unlimited
A federated share can report unlimited quota as -3, so the ajax/upload.php code needs to be adjusted to block uploads when the free space is unlimited.
This commit is contained in:
parent
0945cb7a0e
commit
c1876ea51c
|
@ -138,7 +138,7 @@ $maxHumanFileSize = OCP\Util::humanFileSize($maxUploadFileSize);
|
|||
$totalSize = 0;
|
||||
$isReceivedShare = \OC::$server->getRequest()->getParam('isReceivedShare', false) === 'true';
|
||||
// defer quota check for received shares
|
||||
if (!$isReceivedShare) {
|
||||
if (!$isReceivedShare && $storageStats['freeSpace'] >= 0) {
|
||||
foreach ($files['size'] as $size) {
|
||||
$totalSize += $size;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue