From 10fc1d26ef2fbdbfae520bd9fb68bea6a7ab8d05 Mon Sep 17 00:00:00 2001 From: Bohdan Horbeshko Date: Tue, 22 Jul 2025 13:51:55 -0400 Subject: [PATCH] Enable MUC support for supergroups --- telegram/utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/telegram/utils.go b/telegram/utils.go index 525bcf9..191a55d 100644 --- a/telegram/utils.go +++ b/telegram/utils.go @@ -2413,7 +2413,7 @@ func (c *Client) IsGroup(chat *client.Chat) bool { return false } typ := chat.Type.ChatTypeType() - return typ == client.TypeChatTypeBasicGroup + return typ == client.TypeChatTypeBasicGroup || typ == client.TypeChatTypeSupergroup } // subscribe to a Telegram ID