From 4b9dc2890d078f46dc89860a61700d74674e7068 Mon Sep 17 00:00:00 2001 From: Clemens Wolff Date: Mon, 2 May 2022 11:16:08 -0400 Subject: [PATCH] Convert let to const --- server/notification-providers/apprise.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/notification-providers/apprise.js b/server/notification-providers/apprise.js index 76e1e3c2..acbc0567 100644 --- a/server/notification-providers/apprise.js +++ b/server/notification-providers/apprise.js @@ -13,14 +13,14 @@ class Apprise extends NotificationProvider { name = "apprise"; async send(notification, msg, monitorJSON = null, heartbeatJSON = null) { - let args = [ "-vv", "-b", msg, notification.appriseURL ]; + const args = [ "-vv", "-b", msg, notification.appriseURL ]; if (APPRISE_NOTIFICATION_TITLE) { args.push("-t"); args.push(APPRISE_NOTIFICATION_TITLE); } - let s = childProcess.spawnSync("apprise", args); + const s = childProcess.spawnSync("apprise", args); - let output = (s.stdout) ? s.stdout.toString() : "ERROR: maybe apprise not found"; + const output = (s.stdout) ? s.stdout.toString() : "ERROR: maybe apprise not found"; if (output) {