@social-mail/social-mail-client 1.8.338 → 1.8.342

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -23196,7 +23196,7 @@ System.register(["tslib", "@web-atoms/core/dist/App", "@web-atoms/core/dist/core
23196
23196
  const fud = new FileUploader(this);
23197
23197
  while (size > 0) {
23198
23198
  const blobSize = Math.min(maxSize, file.size - start);
23199
- const part = new File([file.slice(start, blobSize === maxSize ? blobSize : void 0)], "file.dat");
23199
+ const part = new File([file.slice(start, start + blobSize)], "file.dat");
23200
23200
  size -= blobSize;
23201
23201
  start += blobSize;
23202
23202
  const uploadRequest = fud.upload({