Hello Mr Stegeman,
I am not sure if I am asking in the right place. I use the Telegram sender adapter. Unfortunately, when transmitting, the title is not transmitted, but the text "(NOTICE)" or ("ALERT)".
I suspect this is at this point.
async notify(title, message, level) {
console.log(
Sending Telegram with message "${message}", and level "${level}"
);
switch (level) {
case Constants.NotificationLevel.LOW:
case Constants.NotificationLevel.NORMAL:
message = `(NOTICE) ${message}`;
break;
case Constants.NotificationLevel.HIGH:
message = `(ALERT) ${message}`;
break;
}
await sendNotification(message);
Hello Mr Stegeman, I am not sure if I am asking in the right place. I use the Telegram sender adapter. Unfortunately, when transmitting, the title is not transmitted, but the text "(NOTICE)" or ("ALERT)". I suspect this is at this point. async notify(title, message, level) { console.log(
Sending Telegram with message "${message}", and level "${level}"
);Can this be changed? With kind regards GeoHau