Force update nicknames via PubSub and presences on reconnect

dev
Bohdan Horbeshko 10 months ago
parent f8ad8c0204
commit 30b3fd1615

@ -1332,3 +1332,18 @@ func (c *Client) GetVcardInfo(toID int64) (VCardInfo, error) {
return info, nil
}
func (c *Client) UpdateChatNicknames() {
for _, id := range c.cache.ChatsKeys() {
chat, ok := c.cache.GetChat(id)
if ok {
gateway.SendPresence(
c.xmpp,
c.jid,
gateway.SPFrom(strconv.FormatInt(id, 10)),
gateway.SPNickname(chat.Title),
)
gateway.SetNickname(c.jid, strconv.FormatInt(id, 10), chat.Title, c.xmpp)
}
}
}

@ -342,6 +342,7 @@ func handlePresence(s xmpp.Sender, p stanza.Presence) {
gateway.SPImmed(false),
)
}
session.UpdateChatNicknames()
}
}()
}

Loading…
Cancel
Save