fix releases count and resolved #764 (#857)

This commit is contained in:
Lunny Xiao 2017-02-07 23:38:24 +08:00 committed by GitHub
parent 02a881aa32
commit 45a324b437
1 changed files with 1 additions and 1 deletions

View File

@ -158,7 +158,7 @@ func Releases(ctx *context.Context) {
}
}
pager := paginater.New(ctx.Repo.Repository.NumTags, limit, page, 5)
pager := paginater.New(len(rawTags), limit, page, 5)
ctx.Data["Page"] = pager
ctx.Data["Releases"] = releaseTags
ctx.HTML(200, tplReleases)