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

Fixes https://github.com/vector-im/riot-web/issues/9350
pull/9352/head
Travis Ralston 2019-04-01 13:24:17 -06:00
parent 95e247ae7c
commit 8b2d33ac0a
1 changed files with 2 additions and 1 deletions

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({