From 08b19e92efa033627a07323eee08cf3a3495d303 Mon Sep 17 00:00:00 2001 From: Mrs4s Date: Mon, 9 Aug 2021 06:10:11 +0800 Subject: [PATCH] fix: special title update. --- client/notify.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/client/notify.go b/client/notify.go index 42a355ef..d5d422da 100644 --- a/client/notify.go +++ b/client/notify.go @@ -141,6 +141,9 @@ func (c *QQClient) msgGrayTipProcessor(groupCode int64, tipInfo *notify.AIOGrayT c.Error("process special title updated tips error: missing cmd") return } + if mem := c.FindGroup(groupCode).FindMember(event.Uin); mem != nil { + mem.SpecialTitle = event.NewTitle + } c.dispatchMemberSpecialTitleUpdateEvent(event) } }