Fixed: Telegram silent notifications

Closes #4041
pull/4068/head
Mark McDowall 4 years ago
parent cfdaddd81a
commit 0b7aa19ac0

@ -38,6 +38,7 @@ namespace NzbDrone.Core.Notifications.Telegram
.AddFormParameter("chat_id", settings.ChatId)
.AddFormParameter("parse_mode", "HTML")
.AddFormParameter("text", text)
.AddFormParameter("disable_notification", settings.SendSilently)
.Build();
_httpClient.Post(request);
Loading…
Cancel
Save