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