From 0b7aa19ac06600936f6c4cb18ea3474e8a96f1e2 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sun, 1 Nov 2020 15:15:08 -0800 Subject: [PATCH] Fixed: Telegram silent notifications Closes #4041 --- .../Telegram/{TelegramService.cs => TelegramProxy.cs} | 1 + 1 file changed, 1 insertion(+) rename src/NzbDrone.Core/Notifications/Telegram/{TelegramService.cs => TelegramProxy.cs} (96%) diff --git a/src/NzbDrone.Core/Notifications/Telegram/TelegramService.cs b/src/NzbDrone.Core/Notifications/Telegram/TelegramProxy.cs similarity index 96% rename from src/NzbDrone.Core/Notifications/Telegram/TelegramService.cs rename to src/NzbDrone.Core/Notifications/Telegram/TelegramProxy.cs index 1a4d5b7c5..7e081622a 100644 --- a/src/NzbDrone.Core/Notifications/Telegram/TelegramService.cs +++ b/src/NzbDrone.Core/Notifications/Telegram/TelegramProxy.cs @@ -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);