aboutsummaryrefslogtreecommitdiffhomepage
path: root/example/csharp/TdExample.cs
diff options
context:
space:
mode:
Diffstat (limited to 'example/csharp/TdExample.cs')
-rw-r--r--example/csharp/TdExample.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/csharp/TdExample.cs b/example/csharp/TdExample.cs
index a912d9808..2525bb514 100644
--- a/example/csharp/TdExample.cs
+++ b/example/csharp/TdExample.cs
@@ -210,7 +210,7 @@ namespace TdExample
TdApi.ReplyMarkup replyMarkup = new TdApi.ReplyMarkupInlineKeyboard(new TdApi.InlineKeyboardButton[][] { row, row, row });
TdApi.InputMessageContent content = new TdApi.InputMessageText(new TdApi.FormattedText(message, null), null, true);
- _client.Send(new TdApi.SendMessage(chatId, 0, null, null, replyMarkup, content), _defaultHandler);
+ _client.Send(new TdApi.SendMessage(chatId, null, null, null, replyMarkup, content), _defaultHandler);
}
static void Main()