diff --git a/server/notification-providers/cellsynt.js b/server/notification-providers/cellsynt.js index 1d7da407..1a654d22 100644 --- a/server/notification-providers/cellsynt.js +++ b/server/notification-providers/cellsynt.js @@ -10,7 +10,6 @@ class Cellsynt extends NotificationProvider { async send(notification, msg, monitorJSON = null, heartbeatJSON = null) { const okMsg = "Sent Successfully."; - try { let data = { params: { /* Your username (received when account is setup). @@ -113,9 +112,6 @@ class Cellsynt extends NotificationProvider { } return okMsg; - } catch (error) { - this.throwGeneralAxiosError(error); - } } }