diff --git a/server/notification-providers/spugpush.js b/server/notification-providers/spugpush.js
index a0c2ec37d..61574cab9 100644
--- a/server/notification-providers/spugpush.js
+++ b/server/notification-providers/spugpush.js
@@ -5,6 +5,9 @@ class SpugPush extends NotificationProvider {
name = "SpugPush";
+ /**
+ * @inheritdoc
+ */
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
let okMsg = "Sent Successfully.";
try {
@@ -25,11 +28,11 @@ class SpugPush extends NotificationProvider {
/**
* Get the formatted target for message
- * @param {?Object} monitorJSON Monitor details (For Up/Down only)
+ * @param {object} monitorJSON Monitor details (For Up/Down only)
* @returns {string} Formatted target
*/
getTarget(monitorJSON) {
- let target = '-'
+ let target = "-";
if (monitorJSON["hostname"]) {
target = monitorJSON["hostname"];
if (monitorJSON["port"]) {
diff --git a/src/components/notifications/SpugPush.vue b/src/components/notifications/SpugPush.vue
index ff45071d8..3161eadcb 100644
--- a/src/components/notifications/SpugPush.vue
+++ b/src/components/notifications/SpugPush.vue
@@ -4,7 +4,7 @@
- https://push.spug.cc
+ https://push.spug.cc