mirror of
https://github.com/Mrs4s/MiraiGo.git
synced 2025-05-04 11:07:40 +08:00
fix bug.
This commit is contained in:
parent
806ecc3697
commit
41141b5a84
@ -3,6 +3,7 @@ package message
|
|||||||
import (
|
import (
|
||||||
"github.com/Mrs4s/MiraiGo/binary"
|
"github.com/Mrs4s/MiraiGo/binary"
|
||||||
"github.com/Mrs4s/MiraiGo/client/pb/msg"
|
"github.com/Mrs4s/MiraiGo/client/pb/msg"
|
||||||
|
"reflect"
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
)
|
)
|
||||||
@ -121,7 +122,8 @@ func (msg *GroupMessage) ToString() (res string) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (msg *SendingMessage) Append(e IMessageElement) *SendingMessage {
|
func (msg *SendingMessage) Append(e IMessageElement) *SendingMessage {
|
||||||
if e != nil {
|
v := reflect.ValueOf(e)
|
||||||
|
if v.Kind() == reflect.Ptr && !v.IsNil() {
|
||||||
msg.Elements = append(msg.Elements, e)
|
msg.Elements = append(msg.Elements, e)
|
||||||
}
|
}
|
||||||
return msg
|
return msg
|
||||||
|
Loading…
x
Reference in New Issue
Block a user