1
0
mirror of https://github.com/Mrs4s/MiraiGo.git synced 2025-05-04 11:07:40 +08:00

fix: group digest struct field.

This commit is contained in:
wdvxdr 2021-07-26 18:31:04 +08:00
parent cd9830b977
commit 1d68826cef
No known key found for this signature in database
GPG Key ID: 703F8C071DE7A1B6

View File

@ -196,13 +196,13 @@ type (
// GroupDigest 群精华消息
GroupDigest struct {
GroupCode string `json:"group_code"`
GroupCode int64 `json:"group_code,string"`
MessageID uint32 `json:"msg_seq"`
InternalMessageID uint32 `json:"msg_random"`
SenderUin string `json:"sender_uin"`
SenderUin int64 `json:"sender_uin,string"`
SenderNick string `json:"sender_nick"`
SenderTime int64 `json:"sender_time"`
AddDigestUin string `json:"add_digest_uin"`
AddDigestUin int64 `json:"add_digest_uin,string"`
AddDigestNick string `json:"add_digest_nick"`
AddDigestTime int64 `json:"add_digest_time"`
}