Skip to content

Commit

Permalink
fix: upload bug (#742)
Browse files Browse the repository at this point in the history
  • Loading branch information
RiXelanya authored Oct 19, 2023
1 parent 4cae1ed commit bae83a2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@ export default {
let links = [] ;
try {
for (let i = 0; i < this.totalChunks; i++) {
for (let i = 0; i < encryptedFileChunks.length; i++) {
let data = [`{"seed":${encryptedFileChunks[i].seed},"data":{"nonce":[${encryptedFileChunks[i].data.nonce}],"box":[${encryptedFileChunks[i].data.box}]}}`]
const blob = new Blob(data, { type: type });
Expand Down

0 comments on commit bae83a2

Please sign in to comment.