mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-23 23:04:04 +00:00
Don't use then with await.
This commit is contained in:
parent
dfd63386ba
commit
db791c880a
1 changed files with 6 additions and 6 deletions
|
@ -24,12 +24,12 @@ class PromoSMS extends NotificationProvider {
|
||||||
"sender": notification.promosmsSenderName
|
"sender": notification.promosmsSenderName
|
||||||
};
|
};
|
||||||
|
|
||||||
await axios.post("https://promosms.com/api/rest/v3_2/sms", data, config).then(resp => {
|
let resp = await axios.post("https://promosms.com/api/rest/v3_2/sms", data, config);
|
||||||
if (resp.data.response.status !== 0) {
|
|
||||||
let error = "Something gone wrong. Api returned " + resp.data.response.status + ".";
|
if (resp.data.response.status !== 0) {
|
||||||
this.throwGeneralAxiosError(error);
|
let error = "Something gone wrong. Api returned " + resp.data.response.status + ".";
|
||||||
}
|
this.throwGeneralAxiosError(error);
|
||||||
});
|
}
|
||||||
|
|
||||||
return okMsg;
|
return okMsg;
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
|
|
Loading…
Reference in a new issue