diff options
author | zeripath <art27@cantab.net> | 2019-10-20 23:26:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-20 23:26:36 +0100 |
commit | 28f60bb5cb24c71fdbefe16c2d86943fb4cf8a08 (patch) | |
tree | 5c543277fa4d760dc3086e843adada56cc1ad06d /modules/git/commit_info.go | |
parent | c8f3146cd52887c0bdd815ad0bdeb954b242c8fc (diff) | |
download | gitea-28f60bb5cb24c71fdbefe16c2d86943fb4cf8a08.tar.gz gitea-28f60bb5cb24c71fdbefe16c2d86943fb4cf8a08.zip |
Ensure default gpg settings not nil and found commits have reference to repo (#8604)
* Ensure defaultGPGSettings not nil
* Ensure that coerced commits gain a reference to the repo
* Add warning if trying to get defaultgpgsetting on an unattached commit
Diffstat (limited to 'modules/git/commit_info.go')
-rw-r--r-- | modules/git/commit_info.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/git/commit_info.go b/modules/git/commit_info.go index d8bf88a47c..e74ddbfb05 100644 --- a/modules/git/commit_info.go +++ b/modules/git/commit_info.go @@ -72,6 +72,7 @@ func (tes Entries) GetCommitsInfo(commit *Commit, treePath string, cache LastCom treeCommit = commit } else if rev, ok := revs[""]; ok { treeCommit = convertCommit(rev) + treeCommit.repo = commit.repo } return commitsInfo, treeCommit, nil } |