Updated to work with latest Telegram library
This commit is contained in:
parent
8249e5e182
commit
a797561a97
|
@ -8,20 +8,16 @@ namespace Core.Helper
|
|||
{
|
||||
public static class TelegramHelper
|
||||
{
|
||||
public static void SendMessage(string botToken, Int64 chatId, string message, bool useSilentMode, LogHelper log)
|
||||
public async static void SendMessage(string botToken, Int64 chatId, string message, bool useSilentMode, LogHelper log)
|
||||
{
|
||||
if (!botToken.Equals("") && chatId != 0)
|
||||
{
|
||||
try
|
||||
{
|
||||
TelegramBotClient botClient = new TelegramBotClient(botToken);
|
||||
System.Threading.Tasks.Task<Message> sentMessage = botClient.SendTextMessageAsync(chatId, message, ParseMode.Markdown, false, useSilentMode);
|
||||
|
||||
if (sentMessage.IsCompleted)
|
||||
{
|
||||
await botClient.SendTextMessageAsync(chatId: chatId, text: message, parseMode: ParseMode.Markdown,disableNotification: useSilentMode);
|
||||
log.DoLogDebug("Telegram message sent to ChatId " + chatId.ToString() + " on Bot Token '" + botToken + "'");
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
log.DoLogCritical("Exception sending telegram message to ChatId " + chatId.ToString() + " on Bot Token '" + botToken + "'", ex);
|
||||
|
|
Loading…
Reference in New Issue