Skip to content

Commit

Permalink
fix: convert uint8Array to vec<u8>
Browse files Browse the repository at this point in the history
  • Loading branch information
jeasonnow committed Jul 19, 2023
1 parent b28509e commit 571d1bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src-tauri/src/inject/event.js
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ function downladFromDataUri(dataURI) {
invoke('download_file_by_binary', {
params: {
filename,
binary
binary: Array.from(binary)
},
});
}
Expand Down

0 comments on commit 571d1bd

Please sign in to comment.