moved decodeURIComponent to fileReceiver

This commit is contained in:
Abhinav Adduri 2017-07-14 08:59:59 -07:00
parent ef9b15c1d7
commit c2e8139c6e
2 changed files with 4 additions and 4 deletions

View File

@ -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();
})

View File

@ -110,7 +110,7 @@ class FileReceiver extends EventEmitter {
resolve(decrypted);
}),
new Promise((resolve, reject) => {
resolve(fname);
resolve(decodeURIComponent(fname));
})
]);
});