We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95fa39f commit f661f72Copy full SHA for f661f72
1 file changed
packages/app/downloads.ts
@@ -72,9 +72,9 @@ class Downloads {
72
exists: true,
73
});
74
75
- if (config.get("notifications.downloadCompleted")) {
+ if (state === "completed" && config.get("notifications.downloadCompleted")) {
76
createNotification({
77
- title: `Download ${state}: ${fileName}`,
+ title: `Downloaded: ${fileName}`,
78
body: `Click to show the file in ${FILE_MANAGER_NAME}`,
79
click: () => {
80
shell.showItemInFolder(filePath);
0 commit comments