Apply suggestions from code review

Co-authored-by: Frank Elsinga <frank@elsinga.de>
pull/3467/head
小造xu_zh 10 months ago committed by GitHub
parent f3562864ee
commit 6984596568
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -8,16 +8,9 @@ class PushDeer extends NotificationProvider {
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
let okMsg = "Sent Successfully.";
let defaultServer = "https://api2.pushdeer.com";
let endpoint = "/message/push";
let pushdeerlink;
if (notification.pushdeerServer) {
// remove blank characters and ending '/'
let customServer = notification.pushdeerServer.trim().replace(/\/*$/, "");
pushdeerlink = `${customServer}${endpoint}`;
} else {
pushdeerlink = `${defaultServer}${endpoint}`;
}
let serverUrl = notification.pushdeerServer || "https://api2.pushdeer.com";
pushdeerlink = `${serverUrl.trim().replace(/\/*$/, "")}${endpoint}`;
let valid = msg != null && monitorJSON != null && heartbeatJSON != null;

Loading…
Cancel
Save