New: Added silent notification option to telegram

(cherry picked from commit 9e392977b9f66be37c1fd6938c0b051c362ddb42)
This commit is contained in:
Dtaggart
2020-08-16 13:42:14 -04:00
committed by ta264
parent 0387f8e33e
commit e563f7f75e
2 changed files with 3 additions and 1 deletions
@@ -37,6 +37,7 @@ namespace NzbDrone.Core.Notifications.Telegram
request.AddParameter("chat_id", settings.ChatId);
request.AddParameter("parse_mode", "HTML");
request.AddParameter("text", text);
request.AddParameter("disable_notification", settings.SendSilently);
client.ExecuteAndValidate(request);
}