|
@@ -132,11 +132,11 @@ func KfMsgOrEventHandle(svcCtx *svc.ServiceContext, ct types.EventContent) {
|
|
|
}
|
|
}
|
|
|
//消息额外处理
|
|
//消息额外处理
|
|
|
if cbMsg.Msgtype == types.MsgTypeText {
|
|
if cbMsg.Msgtype == types.MsgTypeText {
|
|
|
- msgTypeTextHandle(svcCtx, cbMsg)
|
|
|
|
|
|
|
+ go msgTypeTextHandle(svcCtx, cbMsg)
|
|
|
}
|
|
}
|
|
|
//事件消息额外处理
|
|
//事件消息额外处理
|
|
|
if cbMsg.Msgtype == types.MsgTypeEvent {
|
|
if cbMsg.Msgtype == types.MsgTypeEvent {
|
|
|
- msgTypeEventHandle(svcCtx, cbMsg)
|
|
|
|
|
|
|
+ go msgTypeEventHandle(svcCtx, cbMsg)
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
go updateCustomerList(svcCtx, userIds)
|
|
go updateCustomerList(svcCtx, userIds)
|