mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	Backport #16011
This commit is contained in:
		@@ -54,7 +54,6 @@ func (m *mailNotifier) NotifyNewIssue(issue *models.Issue, mentions []*models.Us
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
func (m *mailNotifier) NotifyIssueChangeStatus(doer *models.User, issue *models.Issue, actionComment *models.Comment, isClosed bool) {
 | 
					func (m *mailNotifier) NotifyIssueChangeStatus(doer *models.User, issue *models.Issue, actionComment *models.Comment, isClosed bool) {
 | 
				
			||||||
	var actionType models.ActionType
 | 
						var actionType models.ActionType
 | 
				
			||||||
	issue.Content = ""
 | 
					 | 
				
			||||||
	if issue.IsPull {
 | 
						if issue.IsPull {
 | 
				
			||||||
		if isClosed {
 | 
							if isClosed {
 | 
				
			||||||
			actionType = models.ActionClosePullRequest
 | 
								actionType = models.ActionClosePullRequest
 | 
				
			||||||
@@ -120,7 +119,6 @@ func (m *mailNotifier) NotifyMergePullRequest(pr *models.PullRequest, doer *mode
 | 
				
			|||||||
		log.Error("pr.LoadIssue: %v", err)
 | 
							log.Error("pr.LoadIssue: %v", err)
 | 
				
			||||||
		return
 | 
							return
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	pr.Issue.Content = ""
 | 
					 | 
				
			||||||
	if err := mailer.MailParticipants(pr.Issue, doer, models.ActionMergePullRequest, nil); err != nil {
 | 
						if err := mailer.MailParticipants(pr.Issue, doer, models.ActionMergePullRequest, nil); err != nil {
 | 
				
			||||||
		log.Error("MailParticipants: %v", err)
 | 
							log.Error("MailParticipants: %v", err)
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
@@ -147,7 +145,6 @@ func (m *mailNotifier) NotifyPullRequestPushCommits(doer *models.User, pr *model
 | 
				
			|||||||
	if err := comment.LoadPushCommits(); err != nil {
 | 
						if err := comment.LoadPushCommits(); err != nil {
 | 
				
			||||||
		log.Error("comment.LoadPushCommits: %v", err)
 | 
							log.Error("comment.LoadPushCommits: %v", err)
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	comment.Content = ""
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
	m.NotifyCreateIssueComment(doer, comment.Issue.Repo, comment.Issue, comment, nil)
 | 
						m.NotifyCreateIssueComment(doer, comment.Issue.Repo, comment.Issue, comment, nil)
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -20,12 +20,16 @@ func mailParticipantsComment(c *models.Comment, opType models.ActionType, issue
 | 
				
			|||||||
	for i, u := range mentions {
 | 
						for i, u := range mentions {
 | 
				
			||||||
		mentionedIDs[i] = u.ID
 | 
							mentionedIDs[i] = u.ID
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
						content := c.Content
 | 
				
			||||||
 | 
						if c.Type == models.CommentTypePullPush {
 | 
				
			||||||
 | 
							content = ""
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
	if err = mailIssueCommentToParticipants(
 | 
						if err = mailIssueCommentToParticipants(
 | 
				
			||||||
		&mailCommentContext{
 | 
							&mailCommentContext{
 | 
				
			||||||
			Issue:      issue,
 | 
								Issue:      issue,
 | 
				
			||||||
			Doer:       c.Poster,
 | 
								Doer:       c.Poster,
 | 
				
			||||||
			ActionType: opType,
 | 
								ActionType: opType,
 | 
				
			||||||
			Content:    c.Content,
 | 
								Content:    content,
 | 
				
			||||||
			Comment:    c,
 | 
								Comment:    c,
 | 
				
			||||||
		}, mentionedIDs); err != nil {
 | 
							}, mentionedIDs); err != nil {
 | 
				
			||||||
		log.Error("mailIssueCommentToParticipants: %v", err)
 | 
							log.Error("mailIssueCommentToParticipants: %v", err)
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -158,12 +158,18 @@ func mailParticipants(issue *models.Issue, doer *models.User, opType models.Acti
 | 
				
			|||||||
	for i, u := range mentions {
 | 
						for i, u := range mentions {
 | 
				
			||||||
		mentionedIDs[i] = u.ID
 | 
							mentionedIDs[i] = u.ID
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
						content := issue.Content
 | 
				
			||||||
 | 
						if opType == models.ActionCloseIssue || opType == models.ActionClosePullRequest ||
 | 
				
			||||||
 | 
							opType == models.ActionReopenIssue || opType == models.ActionReopenPullRequest ||
 | 
				
			||||||
 | 
							opType == models.ActionMergePullRequest {
 | 
				
			||||||
 | 
							content = ""
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
	if err = mailIssueCommentToParticipants(
 | 
						if err = mailIssueCommentToParticipants(
 | 
				
			||||||
		&mailCommentContext{
 | 
							&mailCommentContext{
 | 
				
			||||||
			Issue:      issue,
 | 
								Issue:      issue,
 | 
				
			||||||
			Doer:       doer,
 | 
								Doer:       doer,
 | 
				
			||||||
			ActionType: opType,
 | 
								ActionType: opType,
 | 
				
			||||||
			Content:    issue.Content,
 | 
								Content:    content,
 | 
				
			||||||
			Comment:    nil,
 | 
								Comment:    nil,
 | 
				
			||||||
		}, mentionedIDs); err != nil {
 | 
							}, mentionedIDs); err != nil {
 | 
				
			||||||
		log.Error("mailIssueCommentToParticipants: %v", err)
 | 
							log.Error("mailIssueCommentToParticipants: %v", err)
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user