xiexiaoyuan 2 năm trước cách đây
mục cha
commit
b189a7caca
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      services/comment/comment.go

+ 2 - 2
services/comment/comment.go

@@ -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" {