Compare commits
No commits in common. "22474efc57c7be11875301c9c82c9edc17b5f1fc" and "49705a03a854819a793312ac91b869ebe96c854d" have entirely different histories.
22474efc57
...
49705a03a8
@ -22,11 +22,6 @@ func parse(msg []byte) {
|
||||
// 记录原始数据
|
||||
m.Raw = string(msg)
|
||||
|
||||
// 如果不是自己的消息,直接返回
|
||||
if m.ToUser == current.GetRobotInfo().WxId {
|
||||
return
|
||||
}
|
||||
|
||||
// 提取出群成员信息
|
||||
// Sys类型的消息正文不包含微信 Id,所以不需要处理
|
||||
if m.IsGroup() && m.Type != types.MsgTypeSys {
|
||||
|
@ -23,11 +23,6 @@ func parse(remoteAddr net.Addr, msg []byte) {
|
||||
// 记录原始数据
|
||||
m.Raw = string(msg)
|
||||
|
||||
// 如果不是自己的消息,直接返回
|
||||
if m.ToUser == current.GetRobotInfo().WxId {
|
||||
return
|
||||
}
|
||||
|
||||
// 提取出群成员信息
|
||||
// Sys类型的消息正文不包含微信 Id,所以不需要处理
|
||||
if m.IsGroup() && m.Type != types.MsgTypeSys {
|
||||
|
Loading…
Reference in New Issue
Block a user