this is my code
private async void Bot_OnMessage(object sender, Telegram.Bot.Args.MessageEventArgs e)
{
var message = e.Message; if (message == null || message.Type != MessageType.Text) return; await Bot.SendTextMessageAsync(message.Chat.Id, "Hello?");
in this case, it works well with super groups
but await Bot.SendTextMessageAsync([supergroup chat id], "Hello?");
put Super Group ID in here[supergroup chat id], it won't work. I've set up all the group permissions. After upgrading the super group, I had to drop the bot and invite again