Skip to content

Commit 7130103

Browse files
committed
file-attachment: Update notification message.
1 parent 26a144e commit 7130103

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/renderer/js/components/handle-external-link.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ function handleExternalLink(event) {
2929
ipcRenderer.send('downloadFile', url, downloadPath);
3030
ipcRenderer.once('downloadFileCompleted', (event, filePath, fileName) => {
3131
const downloadNotification = new Notification('Download Complete', {
32-
body: `Click to open ${fileName}`,
32+
body: shouldShowInFolder ? `Click to show ${fileName} in folder` : `Click to open ${fileName}`,
3333
silent: true // We'll play our own sound - ding.ogg
3434
});
3535

0 commit comments

Comments
 (0)