|
@@ -69,11 +69,11 @@ func Comment(user user.UserInfo, req reqComment.ReqComment) (ret response.RespCo
|
|
|
// 敏感词过滤
|
|
|
if user.RecordInfo.OpenID != "" && user.RecordInfo.CreatePlatform == 6 { //只有小程序的用户才能走敏感词过滤接口
|
|
|
checkResult, tErr := wx_app.MsgSecCheck(user.RecordInfo.OpenID, req.Content)
|
|
|
- /*if tErr != nil {
|
|
|
+ if tErr != nil {
|
|
|
errMsg = "敏感词过滤失败" + tErr.Error()
|
|
|
err = errors.New("敏感词过滤失败")
|
|
|
return
|
|
|
- }*/
|
|
|
+ }
|
|
|
if tErr == nil {
|
|
|
if checkResult.Result != nil {
|
|
|
if checkResult.Result.Suggest != "pass" {
|