moved decodeURIComponent to fileReceiver
This commit is contained in:
parent
ef9b15c1d7
commit
c2e8139c6e
2 changed files with 4 additions and 4 deletions
|
@ -65,7 +65,7 @@ $(document).ready(function() {
|
|||
return;
|
||||
})
|
||||
.then(([decrypted, fname]) => {
|
||||
name.innerText = decodeURIComponent(fname);
|
||||
name.innerText = fname;
|
||||
const dataView = new DataView(decrypted);
|
||||
const blob = new Blob([dataView]);
|
||||
const downloadUrl = URL.createObjectURL(blob);
|
||||
|
@ -74,10 +74,10 @@ $(document).ready(function() {
|
|||
a.href = downloadUrl;
|
||||
if (window.navigator.msSaveBlob) {
|
||||
// if we are in microsoft edge or IE
|
||||
window.navigator.msSaveBlob(blob, decodeURIComponent(fname));
|
||||
window.navigator.msSaveBlob(blob, fname);
|
||||
return;
|
||||
}
|
||||
a.download = decodeURIComponent(fname);
|
||||
a.download = fname;
|
||||
document.body.appendChild(a);
|
||||
a.click();
|
||||
})
|
||||
|
|
|
@ -110,7 +110,7 @@ class FileReceiver extends EventEmitter {
|
|||
resolve(decrypted);
|
||||
}),
|
||||
new Promise((resolve, reject) => {
|
||||
resolve(fname);
|
||||
resolve(decodeURIComponent(fname));
|
||||
})
|
||||
]);
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue