1
0
Fork 0
mirror of synced 2024-06-27 02:31:04 +12:00

fix chunked upload for tags - chunk start from 1

This commit is contained in:
Damodar Lohani 2021-11-30 13:46:47 +05:45
parent ba8598cc8b
commit 2a6bf47bce

View file

@ -477,7 +477,7 @@ App::post('/v1/functions/:functionId/tags')
} else {
// Calculate total number of chunks based on the chunk size i.e ($rangeEnd - $rangeStart)
$chunks = (int) ceil($size / ($end + 1 - $start));
$chunk = (int) ($start / ($end + 1 - $start));
$chunk = (int) ($start / ($end + 1 - $start)) + 1;
}
}