clean up + default ntfs.sh server url

This commit is contained in:
Philipp Dormann 2022-05-23 21:11:01 +02:00
parent 122e6a842b
commit 14dbe7c334
No known key found for this signature in database
GPG Key ID: 3BB9ADD52DCA4314
2 changed files with 1 additions and 3 deletions

View File

@ -8,9 +8,6 @@ class Ntfy extends NotificationProvider {
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
let okMsg = "Sent Successfully.";
try {
if (notification.ntfyserverurl && notification.ntfyserverurl.endsWith("/")) {
notification.ntfyserverurl = notification.ntfyserverurl.slice(0, -1);
}
await axios.post(`${notification.ntfyserverurl}`, {
"topic": notification.ntfytopic,
"message": msg,

View File

@ -22,6 +22,7 @@
export default {
mounted() {
if (typeof this.$parent.notification.ntfyPriority === "undefined") {
this.$parent.notification.ntfyserverurl = "https://ntfy.sh";
this.$parent.notification.ntfyPriority = 5;
}
},