Fix regression: Gitea commits API again returns commit summaries, not full messages (#12186)

Closes #12185
mj-v1.14.3
Kristian Antonsen 4 years ago committed by GitHub
parent dbd5e4bb8d
commit cedbd3684f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -298,7 +298,7 @@ func toCommit(ctx *context.APIContext, repo *models.Repository, commit *git.Comm
},
Date: commit.Committer.When.Format(time.RFC3339),
},
Message: commit.Summary(),
Message: commit.Message(),
Tree: &api.CommitMeta{
URL: repo.APIURL() + "/git/trees/" + commit.ID.String(),
SHA: commit.ID.String(),

Loading…
Cancel
Save