消息优化

This commit is contained in:
hahwu 2026-03-03 12:29:48 +08:00
parent 1e0ca0db80
commit a22e318c22

View File

@ -169,16 +169,17 @@ const (
func (m *Msg) Clone() *Msg {
return &Msg{
Type: m.Type,
To: m.To,
From: m.From,
Item: m.Item,
SendT: m.SendT,
End: m.End,
Extra: m.Extra,
Id: m.Id,
H: m.H,
UniKey: m.UniKey,
Type: m.Type,
To: m.To,
From: m.From,
Item: m.Item,
SendT: m.SendT,
End: m.End,
Extra: m.Extra,
Id: m.Id,
H: m.H,
UniKey: m.UniKey,
HandleType: m.HandleType,
}
}