From 729714375b5332fc11751b493bcaa970522f303f Mon Sep 17 00:00:00 2001 From: Araxeus Date: Wed, 28 Apr 2021 04:27:50 +0300 Subject: [PATCH] update camelCase --- plugins/notifications/interactive.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/notifications/interactive.js b/plugins/notifications/interactive.js index 9dbed278..2afb1c49 100644 --- a/plugins/notifications/interactive.js +++ b/plugins/notifications/interactive.js @@ -14,7 +14,7 @@ module.exports.setupInteractive = (win, unpauseNotification) => { onPause = unpauseNotification; win.webContents.once("closed", () => { - Delete() + deleteNotification() }); } @@ -33,7 +33,7 @@ function deleteNotification() { //New notification module.exports.notifyInteractive = function sendToaster(songInfo) { - Delete(); + deleteNotification(); //download image and get path let imgSrc = notificationImage(songInfo, true); toDelete = { @@ -84,7 +84,7 @@ module.exports.notifyInteractive = function sendToaster(songInfo) { //Native datatype case "dismissed": case "timeout": - Delete(); + deleteNotification(); } }