mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-03 08:02:36 +09:00 
			
		
		
		
	Merge pull request #2393 from sapk/fix-issue-2375
Correction for issue #2375
This commit is contained in:
		@@ -1595,13 +1595,13 @@ func createComment(e *xorm.Session, u *User, repo *Repository, issue *Issue, com
 | 
			
		||||
		// Notify watchers.
 | 
			
		||||
		act := &Action{
 | 
			
		||||
			ActUserID:    u.Id,
 | 
			
		||||
			ActUserName:  u.LowerName,
 | 
			
		||||
			ActUserName:  u.Name,
 | 
			
		||||
			ActEmail:     u.Email,
 | 
			
		||||
			OpType:       COMMENT_ISSUE,
 | 
			
		||||
			Content:      fmt.Sprintf("%d|%s", issue.Index, strings.Split(content, "\n")[0]),
 | 
			
		||||
			RepoID:       repo.ID,
 | 
			
		||||
			RepoUserName: repo.Owner.LowerName,
 | 
			
		||||
			RepoName:     repo.LowerName,
 | 
			
		||||
			RepoUserName: repo.Owner.Name,
 | 
			
		||||
			RepoName:     repo.Name,
 | 
			
		||||
			IsPrivate:    repo.IsPrivate,
 | 
			
		||||
		}
 | 
			
		||||
		if err = notifyWatchers(e, act); err != nil {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user