diff options
author | Unknwon <joe2010xtmf@163.com> | 2014-09-23 13:06:25 -0400 |
---|---|---|
committer | Unknwon <joe2010xtmf@163.com> | 2014-09-23 13:06:25 -0400 |
commit | ebb05475ed15fffc37145799ce7c72b65ccdbfc5 (patch) | |
tree | 013ad9450ad03cb84b8f0f68d433365e57a37468 /modules/git | |
parent | a11ed51bbbdde56967e1499325ae85d9d86712e7 (diff) | |
download | gitea-ebb05475ed15fffc37145799ce7c72b65ccdbfc5.tar.gz gitea-ebb05475ed15fffc37145799ce7c72b65ccdbfc5.zip |
Fix #495 and cannot view repository by tag
Diffstat (limited to 'modules/git')
-rw-r--r-- | modules/git/repo_tag.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/git/repo_tag.go b/modules/git/repo_tag.go index 21818f3e6b..dd31e4414f 100644 --- a/modules/git/repo_tag.go +++ b/modules/git/repo_tag.go @@ -77,6 +77,7 @@ func (repo *Repository) getTag(id sha1) (*Tag, error) { } tag.Id = id + tag.Object = id tag.repo = repo repo.tagCache[id] = tag |