Fixed issue where file a file that is smaller than the default blob size would not upload

This commit is contained in:
xevidos 2020-01-29 17:19:53 -05:00
parent c148d140b2
commit a7fc315f46

View File

@ -1797,6 +1797,7 @@
if( total_size < blob_size ) {
blob_size = total_size;
total_blobs = 1;
} else {
total_blobs = ( Math.round( ( total_size / blob_size ) ) );