Update serwersms.js

Adds the ability to use group_id
This commit is contained in:
lci-sinersio 2024-06-03 14:19:31 +02:00 committed by GitHub
parent c919d2c990
commit 1ece0faa76
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -17,6 +17,8 @@ class SerwerSMS extends NotificationProvider {
"Content-Type": "application/json",
}
};
// Użyj telefonu jako pierwszej opcji
let data = {
"username": notification.serwersmsUsername,
"password": notification.serwersmsPassword,
@ -27,6 +29,13 @@ class SerwerSMS extends NotificationProvider {
let resp = await axios.post(url, data, config);
if (!resp.data.success) {
// If unsuccessful, try using group_id
data.phone = null; // Clear phone number
data.group_id = notification.serwersmsPhoneNumber;
resp = await axios.post(url, data, config);
}
if (!resp.data.success) {
if (resp.data.error) {
let error = `SerwerSMS.pl API returned error code ${resp.data.error.code} (${resp.data.error.type}) with error message: ${resp.data.error.message}`;