Browse Source

removed a space

AJvanLoon 8 years ago
parent
commit
a8936c21c8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      website/src/_posts/2017-03-0.15.md

+ 1 - 1
website/src/_posts/2017-03-0.15.md

@@ -23,7 +23,7 @@ Just like with “local” uploads, Uppy can now pause and resume remote uploads
 
 While working on pausing remote uploads with `uppy-server`, Ife discovered a strange bug: uppy-client would hang during the upload, after which the progress would immediately jump to 100%. After some solid Sherlock Holmesing, we found what was causing it: uploads were happening too fast. This was leading to progress events being sent very, very often (like 300 / second), which trashed the interface rendering loop. We have solved this by [adding throttling in tus-js-client](https://github.com/tus/tus-js-client/commit/9940f27b2361fd7e10ba58b09b60d82422183bbb) (thanks Marius!) and [uppy-server](https://github.com/transloadit/uppy-server/commit/936ad48e92631c45d123664900b9aabcf7a190fa) (thanks Ife!). I would also very much like to take this opportunity to thank myself for [fixing](https://github.com/transloadit/uppy/commit/1d5f4404546420442deabc94df84bd3ec0677eec) [it](https://github.com/transloadit/uppy/commit/db32c6f4fd85420532f27f04920dbaf6d126ea9b) in uppy-client too! :innocent:
 
-To prevent “jumping” progress, numbers and text in StatusBar are now only updated once a second. Plus, we have  switched to [`prettier-bytes`](https://www.npmjs.com/package/prettier-bytes), which adds some nice number rounding. Smooth as butter!
+To prevent “jumping” progress, numbers and text in StatusBar are now only updated once a second. Plus, we have switched to [`prettier-bytes`](https://www.npmjs.com/package/prettier-bytes), which adds some nice number rounding. Smooth as butter!
 
 TL;DR Uppy was simply too fast at uploading, so we had to shorten the leash a bit!