Commit-Dropdown: Show Author of commit if available (#30272)
As in commits page we show the author of the commit in the commits dropdown and not the committer. Commits Page:  and the same contents in our dropdown:  fixes #29588 (cherry picked from commit 07bcfc171bcccfe78a86c7b4b3f9b729ba7d60b6)
This commit is contained in:
		
					parent
					
						
							
								b0ff1a17a4
							
						
					
				
			
			
				commit
				
					
						300c8dedfd
					
				
			
		
					 1 changed files with 4 additions and 4 deletions
				
			
		| 
						 | 
				
			
			@ -967,12 +967,12 @@ func GetPullCommits(ctx *gitea_context.Context, issue *issues_model.Issue) ([]Co
 | 
			
		|||
	for _, commit := range prInfo.Commits {
 | 
			
		||||
		var committerOrAuthorName string
 | 
			
		||||
		var commitTime time.Time
 | 
			
		||||
		if commit.Committer != nil {
 | 
			
		||||
			committerOrAuthorName = commit.Committer.Name
 | 
			
		||||
			commitTime = commit.Committer.When
 | 
			
		||||
		} else {
 | 
			
		||||
		if commit.Author != nil {
 | 
			
		||||
			committerOrAuthorName = commit.Author.Name
 | 
			
		||||
			commitTime = commit.Author.When
 | 
			
		||||
		} else {
 | 
			
		||||
			committerOrAuthorName = commit.Committer.Name
 | 
			
		||||
			commitTime = commit.Committer.When
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		commits = append(commits, CommitInfo{
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue