We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
file1= 50M ,split by 10M send 5 count is right, but it send 6 count,because of: elFinder-2.1.42 efinder.full.js line 6534:
while(start <= blobSize)
it should update to: while(start < blobSize)
bug code : chunked[chunkID] = 0; while(start <= blobSize) { chunk = blob[blobSlice](start, end); chunk._chunk = blob.name + '.' + (++chunks) + '_' + total + '.part'; chunk._cid = chunkID; chunk._range = start + ',' + chunk.size + ',' + blobSize; chunk._mtime = blobMtime; chunked[chunkID]++;
chunked[chunkID] = 0; while(start <= blobSize) { chunk = blob[blobSlice](start, end); chunk._chunk = blob.name + '.' + (++chunks) + '_' + total + '.part'; chunk._cid = chunkID; chunk._range = start + ',' + chunk.size + ',' + blobSize; chunk._mtime = blobMtime; chunked[chunkID]++;
The text was updated successfully, but these errors were encountered:
@laiyangwen Yes, that's right. So, I'll fix it. Thanks! 👍
Sorry, something went wrong.
187f297
nao-pon
No branches or pull requests
file1= 50M ,split by 10M
send 5 count is right,
but it send 6 count,because of:
elFinder-2.1.42 efinder.full.js line 6534:
while(start <= blobSize)
it should update to: while(start < blobSize)
bug code :
chunked[chunkID] = 0; while(start <= blobSize) { chunk = blob[blobSlice](start, end); chunk._chunk = blob.name + '.' + (++chunks) + '_' + total + '.part'; chunk._cid = chunkID; chunk._range = start + ',' + chunk.size + ',' + blobSize; chunk._mtime = blobMtime; chunked[chunkID]++;
The text was updated successfully, but these errors were encountered: