diff options
Diffstat (limited to 'telegram/utils.go')
-rw-r--r-- | telegram/utils.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/telegram/utils.go b/telegram/utils.go index 3ab6b88..c12321d 100644 --- a/telegram/utils.go +++ b/telegram/utils.go @@ -1410,6 +1410,10 @@ func (c *Client) subscribeToID(id int64, chat *client.Chat) { chat, _, _ = c.GetContactByID(id, nil) } if chat != nil { + if c.Session.MUC && c.IsGroup(chat) { + return + } + args = append(args, gateway.SPNickname(chat.Title)) gateway.SetNickname(c.jid, strconv.FormatInt(id, 10), chat.Title, c.xmpp) |