Don't try to save files the user didn't want to save

Fixes https://github.com/vector-im/riot-web/issues/9350
This commit is contained in:
Travis Ralston 2019-04-01 13:24:17 -06:00
parent 95e247ae7c
commit 8b2d33ac0a

View file

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