From 38c56e521f36e284e99d4a5a0c53670ccd55b0b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BD=AD=E5=B4=87=E5=B2=B3?= Date: Thu, 6 May 2021 09:56:26 +0800 Subject: [PATCH] feat: joinRequest add member Invite info --- client/system_msg.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/client/system_msg.go b/client/system_msg.go index a2578a83..d972582f 100644 --- a/client/system_msg.go +++ b/client/system_msg.go @@ -32,6 +32,8 @@ type ( RequesterNick string `json:"requester_nick"` GroupCode int64 `json:"group_id"` GroupName string `json:"group_name"` + ActionUinNick string `json:"action_uin_nick"` + ActionUin int64 `json:"action_uin"` Checked bool `json:"checked"` Actor int64 `json:"actor"` @@ -249,6 +251,8 @@ func decodeSystemMsgGroupPacket(c *QQClient, _ *incomingPacketInfo, payload []by Actor: st.Msg.ActorUin, Suspicious: len(st.Msg.WarningTips) > 0, client: c, + ActionUin: st.Msg.ActionUin, + ActionUinNick: st.Msg.ActionUinQqNick, }) default: c.Error("unknown group message type: %v", st.Msg.GroupMsgType)