mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-24 07:14:04 +00:00
Convert let to const
This commit is contained in:
parent
f9004bcbed
commit
4b9dc2890d
1 changed files with 3 additions and 3 deletions
|
@ -13,14 +13,14 @@ class Apprise extends NotificationProvider {
|
||||||
name = "apprise";
|
name = "apprise";
|
||||||
|
|
||||||
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
|
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) {
|
if (APPRISE_NOTIFICATION_TITLE) {
|
||||||
args.push("-t");
|
args.push("-t");
|
||||||
args.push(APPRISE_NOTIFICATION_TITLE);
|
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) {
|
if (output) {
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue