From 54184350a45ee0c527b228b3150763fea9495bd7 Mon Sep 17 00:00:00 2001 From: Philipp Dormann Date: Mon, 23 May 2022 21:13:57 +0200 Subject: [PATCH] fix: missing semicolons --- server/notification-providers/ntfy.js | 2 +- src/components/notifications/Ntfy.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/server/notification-providers/ntfy.js b/server/notification-providers/ntfy.js index 442d8068b..21f358f64 100644 --- a/server/notification-providers/ntfy.js +++ b/server/notification-providers/ntfy.js @@ -13,7 +13,7 @@ class Ntfy extends NotificationProvider { "message": msg, "priority": notification.ntfyPriority || 4, "title": "Uptime-Kuma", - }) + }); return okMsg; diff --git a/src/components/notifications/Ntfy.vue b/src/components/notifications/Ntfy.vue index fd6abef5e..d9a83b499 100644 --- a/src/components/notifications/Ntfy.vue +++ b/src/components/notifications/Ntfy.vue @@ -26,5 +26,5 @@ export default { this.$parent.notification.ntfyPriority = 5; } }, -} +};