mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-29 10:57:44 +09:00 
			
		
		
		
	Fix API to return author for author on commits(#16276)
This commit is contained in:
		| @@ -155,8 +155,8 @@ func ToCommit(repo *models.Repository, commit *git.Commit, userCache map[string] | |||||||
| 			URL: repo.APIURL() + "/git/commits/" + commit.ID.String(), | 			URL: repo.APIURL() + "/git/commits/" + commit.ID.String(), | ||||||
| 			Author: &api.CommitUser{ | 			Author: &api.CommitUser{ | ||||||
| 				Identity: api.Identity{ | 				Identity: api.Identity{ | ||||||
| 					Name:  commit.Committer.Name, | 					Name:  commit.Author.Name, | ||||||
| 					Email: commit.Committer.Email, | 					Email: commit.Author.Email, | ||||||
| 				}, | 				}, | ||||||
| 				Date: commit.Author.When.Format(time.RFC3339), | 				Date: commit.Author.When.Format(time.RFC3339), | ||||||
| 			}, | 			}, | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user