1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-03-11 14:47:44 +00:00

Fixed: Telegram silent notifications

Closes #4041
This commit is contained in:
Mark McDowall 2020-11-01 15:15:08 -08:00
parent cfdaddd81a
commit 0b7aa19ac0

View file

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