xiexiaoyuan 2 年之前
父節點
當前提交
b189a7caca
共有 1 個文件被更改,包括 2 次插入2 次删除
  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" {