1
0
Fork 0
mirror of synced 2024-06-29 19:50:26 +12:00

function tags upload chunk begin from 1

This commit is contained in:
Damodar Lohani 2021-12-03 11:43:41 +05:45
parent 307114f2c5
commit 5ea1ab714e

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;
}
}
@ -498,7 +498,7 @@ App::post('/v1/functions/:functionId/tags')
if(!$tag->isEmpty()) {
$chunks = $tag->getAttribute('chunksTotal', 1);
if($chunk == -1) {
$chunk = $chunks - 1;
$chunk = $chunks;
}
}