Removed unnecessary try catch

pull/4558/head
Simon Nilsson 1 month ago committed by GitHub
parent c17abf3ec3
commit e0f1216ef5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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);
}
}
}

Loading…
Cancel
Save