Extract child process args into variable

This commit is contained in:
Clemens Wolff 2022-05-02 11:00:14 -04:00
parent ba46544772
commit bc174c3325

View File

@ -6,7 +6,8 @@ class Apprise extends NotificationProvider {
name = "apprise";
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";