-
-
Notifications
You must be signed in to change notification settings - Fork 351
Open
Labels
Description
While the Readme says
.sizeUploaded() Returns the total size uploaded of all files in bytes.
but the function itself returns a floating point value. The total value sometimes doesn't match the total value at the end of the upload due to the precision of the division. The value is sometime greater than, sometimes less than the total value (only by some small number like ~0.000001).
The error lies in the way the size is computed for non-yet-success files:
Line 1451 in e30eb63
| size = this.progress() * size; |