소스 검색

fix: 删除评论后续

hsun 2 년 전
부모
커밋
6281e2f33a
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5 1
      logic/yb_community_question/yb_community_question_comment.go

+ 5 - 1
logic/yb_community_question/yb_community_question_comment.go

@@ -463,6 +463,10 @@ func afterDelete(communityQuestionComment *yb_community_question_comment.YbCommu
 			go alarm_msg.SendAlarmMsg("问答评论信息删除后,标记站内消息失败"+time.Now().Format("2006-01-02 15:04:05")+";Err:"+err.Error(), 3)
 		}
 	}()
-	err = company_approval_message.CancelCompanyApprovalMessage(int(communityQuestionComment.CommunityQuestionCommentID), company_approval_message.CompanyApprovalMessageSourceTypeByQuestionComment)
+	sourceType := company_approval_message.CompanyApprovalMessageSourceTypeByQuestionComment
+	if communityQuestionComment.Source == 2 {
+		sourceType = company_approval_message.CompanyApprovalMessageSourceTypeByVideoComment
+	}
+	err = company_approval_message.CancelCompanyApprovalMessage(int(communityQuestionComment.CommunityQuestionCommentID), int8(sourceType))
 	return
 }