@social-mail/social-mail-client 1.8.338 → 1.8.339
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.
- package/dist/admin/AdminAppIndex.pack.js +1 -1
- package/dist/admin/AdminAppIndex.pack.js.map +1 -1
- package/dist/admin/AdminAppIndex.pack.min.js +1 -1
- package/dist/admin/AdminAppIndex.pack.min.js.map +1 -1
- package/dist/services/files/LocalFileService.js +1 -1
- package/dist/services/files/LocalFileService.js.map +1 -1
- package/dist/site-editor-app/SiteEditorApp.pack.js +1 -1
- package/dist/site-editor-app/SiteEditorApp.pack.js.map +1 -1
- package/dist/site-editor-app/SiteEditorApp.pack.min.js +1 -1
- package/dist/site-editor-app/SiteEditorApp.pack.min.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/web/AppIndex.pack.js +1 -1
- package/dist/web/AppIndex.pack.js.map +1 -1
- package/dist/web/AppIndex.pack.min.js +1 -1
- package/dist/web/AppIndex.pack.min.js.map +1 -1
- package/package.json +1 -1
- package/src/services/files/LocalFileService.tsx +1 -1
|
@@ -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,
|
|
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({
|