mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	This commit is contained in:
		@@ -556,7 +556,8 @@ func GetCommitMessages(pr *models.PullRequest) string {
 | 
			
		||||
	authorsMap := map[string]bool{}
 | 
			
		||||
	authors := make([]string, 0, list.Len())
 | 
			
		||||
	stringBuilder := strings.Builder{}
 | 
			
		||||
	element := list.Front()
 | 
			
		||||
	// commits list is in reverse chronological order
 | 
			
		||||
	element := list.Back()
 | 
			
		||||
	for element != nil {
 | 
			
		||||
		commit := element.Value.(*git.Commit)
 | 
			
		||||
 | 
			
		||||
@@ -581,7 +582,7 @@ func GetCommitMessages(pr *models.PullRequest) string {
 | 
			
		||||
			authors = append(authors, authorString)
 | 
			
		||||
			authorsMap[authorString] = true
 | 
			
		||||
		}
 | 
			
		||||
		element = element.Next()
 | 
			
		||||
		element = element.Prev()
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	// Consider collecting the remaining authors
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user