1
0
mirror of https://github.com/Mrs4s/MiraiGo.git synced 2025-05-04 19:17:38 +08:00

update: unknown group system msg log level updated Error -> Debug

This commit is contained in:
Mrs4s 2021-12-13 01:42:29 +08:00
parent 06bc0bba17
commit 5d7cb85b1e
No known key found for this signature in database
GPG Key ID: 3186E98FA19CE3A7

View File

@ -255,12 +255,12 @@ func decodeSystemMsgGroupPacket(c *QQClient, _ *incomingPacketInfo, payload []by
ActionUinNick: st.Msg.ActionUinQqNick,
})
default:
c.Error("unknown group message type: %v", st.Msg.GroupMsgType)
c.Debug("unknown group system message type: %v", st.Msg.GroupMsgType)
}
case 3: // ?
case 5: // 自身状态变更(管理员/加群退群)
default:
c.Error("unknown group msg: %v", st.Msg.SubType)
c.Debug("unknown group system msg: %v", st.Msg.SubType)
}
}
return ret, nil