Merge pull request #9352 from vector-im/travis/save-as-2

Don't try to save files the user didn't want to save
This commit is contained in:
Travis Ralston
2019-04-02 07:33:36 -06:00
committed by GitHub

View File

@@ -96,13 +96,14 @@ function onLinkContextMenu(ev, params) {
defaultPath: targetFileName,
});
if (!filePath) return; // user cancelled dialog
try {
if (url.startsWith("data:")) {
fs.writeFileSync(filePath, nativeImage.createFromDataURL(url));
} else {
request.get(url).pipe(fs.createWriteStream(filePath));
}
} catch (err) {
console.error(err);
dialog.showMessageBox({