diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2019-03-11 11:44:58 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-11 11:44:58 +0800 |
commit | 4334fe754e4a338a13073f649707acd26d1f4a12 (patch) | |
tree | cea77d699b0af6b9d3c3fab591514a889c869a4c /routers | |
parent | 2315019fefb07dfe08e4ecefa199fd947c0c79b8 (diff) | |
download | gitea-4334fe754e4a338a13073f649707acd26d1f4a12.tar.gz gitea-4334fe754e4a338a13073f649707acd26d1f4a12.zip |
update git vendor to fix wrong release commit id and add migrations (#6224)
* update git vendor to fix wrong release commit id and add migrations
* fix count
* fix migration release
* fix tests
Diffstat (limited to 'routers')
-rw-r--r-- | routers/repo/view.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/repo/view.go b/routers/repo/view.go index c14537bf97..786cfcbc56 100644 --- a/routers/repo/view.go +++ b/routers/repo/view.go @@ -49,7 +49,7 @@ func renderDirectory(ctx *context.Context, treeLink string) { } entries.CustomSort(base.NaturalSortLess) - ctx.Data["Files"], err = entries.GetCommitsInfo(ctx.Repo.Commit, ctx.Repo.TreePath) + ctx.Data["Files"], err = entries.GetCommitsInfo(ctx.Repo.Commit, ctx.Repo.TreePath, nil) if err != nil { ctx.ServerError("GetCommitsInfo", err) return |