We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e13aa5 commit ced17a5Copy full SHA for ced17a5
1 file changed
service/watchdog/notification-test.js
@@ -70,7 +70,7 @@ module.exports.toast = async() => {
70
await balloon({
71
title: payload.title,
72
message: (options.notification.showDesc) ? "Balloon Fallback\nHello World" : "Balloon Fallback",
73
- ico: "./icon.ico"
+ ico: "./notification/icon/icon.ico"
74
});
75
}catch(err){
76
throw err;
@@ -96,7 +96,7 @@ module.exports.gntp = async() => {
96
await gntp.send({
97
title: "Achievement Watcher",
98
message: (options.notification.showDesc) ? "Grrr!\nHello World" : "Grrr!",
99
- icon: "./icon.png"
+ icon: "./notification/icon/icon.png"
100
101
102
if(options.notification.rumble){ xinput.rumble().catch(()=>{}); }
0 commit comments