mirror of
https://github.com/go-gitea/gitea
synced 2025-01-12 02:34:28 +00:00
Fix zero created time bug on commit api (#17547)
Co-authored-by: zeripath <art27@cantab.net>
This commit is contained in:
parent
e8cf04bad7
commit
f25f7c592f
@ -149,6 +149,7 @@ func ToCommit(repo *models.Repository, commit *git.Commit, userCache map[string]
|
|||||||
CommitMeta: &api.CommitMeta{
|
CommitMeta: &api.CommitMeta{
|
||||||
URL: repo.APIURL() + "/git/commits/" + commit.ID.String(),
|
URL: repo.APIURL() + "/git/commits/" + commit.ID.String(),
|
||||||
SHA: commit.ID.String(),
|
SHA: commit.ID.String(),
|
||||||
|
Created: commit.Committer.When,
|
||||||
},
|
},
|
||||||
HTMLURL: repo.HTMLURL() + "/commit/" + commit.ID.String(),
|
HTMLURL: repo.HTMLURL() + "/commit/" + commit.ID.String(),
|
||||||
RepoCommit: &api.RepoCommit{
|
RepoCommit: &api.RepoCommit{
|
||||||
@ -171,6 +172,7 @@ func ToCommit(repo *models.Repository, commit *git.Commit, userCache map[string]
|
|||||||
Tree: &api.CommitMeta{
|
Tree: &api.CommitMeta{
|
||||||
URL: repo.APIURL() + "/git/trees/" + commit.ID.String(),
|
URL: repo.APIURL() + "/git/trees/" + commit.ID.String(),
|
||||||
SHA: commit.ID.String(),
|
SHA: commit.ID.String(),
|
||||||
|
Created: commit.Committer.When,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
Author: apiAuthor,
|
Author: apiAuthor,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user