|
|
@ -6,7 +6,8 @@ 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 s = childProcess.spawnSync("apprise", [ "-vv", "-b", msg, notification.appriseURL ]);
|
|
|
|
let args = [ "-vv", "-b", msg, notification.appriseURL ];
|
|
|
|
|
|
|
|
let s = childProcess.spawnSync("apprise", args);
|
|
|
|
|
|
|
|
|
|
|
|
let output = (s.stdout) ? s.stdout.toString() : "ERROR: maybe apprise not found";
|
|
|
|
let output = (s.stdout) ? s.stdout.toString() : "ERROR: maybe apprise not found";
|
|
|
|
|
|
|
|
|
|
|
|