s3-multipart-upload-browser
s3-multipart-upload-browser copied to clipboard
0 KB blob size is creating problems
When we upload a file then last blob from this.blobs
is always having 0 KB size. Due to this when we issue s3upload.completeMultipartUpload()
request after all parts have finished uploading then an exception is raised from Server-Side which say something like this Your proposed upload is smaller than the minimum allowed size
. And due to this exception our file don't get upload on Amazon S3.
I' am getting this error each time I try to upload any file.
I resolved this issue by placing a check to avoid pushing 0 KB blob in this.blobs
. Do you accept Pull Requests? :smile:
Yes sure, please send a pull request.