diff --git a/server/notification-providers/pushdeer.js b/server/notification-providers/pushdeer.js index bbd83f4bf..ff3fd7d9b 100644 --- a/server/notification-providers/pushdeer.js +++ b/server/notification-providers/pushdeer.js @@ -8,7 +8,14 @@ class PushDeer extends NotificationProvider { async send(notification, msg, monitorJSON = null, heartbeatJSON = null) { let okMsg = "Sent Successfully."; - let pushdeerlink = "https://api2.pushdeer.com/message/push"; + let defaultServer = "https://api2.pushdeer.com"; + let endpoint = "/message/push"; + let pushdeerlink; + if (notification.pushdeerServer) { + pushdeerlink = `${notification.pushdeerServer}${endpoint}`; + } else { + pushdeerlink = `${defaultServer}${endpoint}`; + } let valid = msg != null && monitorJSON != null && heartbeatJSON != null; diff --git a/src/components/notifications/PushDeer.vue b/src/components/notifications/PushDeer.vue index f61849630..40970f15a 100644 --- a/src/components/notifications/PushDeer.vue +++ b/src/components/notifications/PushDeer.vue @@ -1,4 +1,9 @@