aboutsummaryrefslogtreecommitdiffstats
path: root/routers/user/profile.go
diff options
context:
space:
mode:
Diffstat (limited to 'routers/user/profile.go')
-rw-r--r--routers/user/profile.go17
1 files changed, 15 insertions, 2 deletions
diff --git a/routers/user/profile.go b/routers/user/profile.go
index 3b4d5a6b3c..ef6cb9cd9d 100644
--- a/routers/user/profile.go
+++ b/routers/user/profile.go
@@ -134,14 +134,27 @@ func Profile(ctx *context.Context) {
keyword := ctx.Query("q")
if len(keyword) == 0 {
+ var total int
repos, err = models.GetUserRepositories(ctxUser.ID, showPrivate, page, setting.UI.User.RepoPagingNum, orderBy)
if err != nil {
ctx.Handle(500, "GetRepositories", err)
return
}
ctx.Data["Repos"] = repos
- ctx.Data["Page"] = paginater.New(ctxUser.NumRepos, setting.UI.User.RepoPagingNum, page, 5)
- ctx.Data["Total"] = ctxUser.NumRepos
+
+ if showPrivate {
+ total = ctxUser.NumRepos
+ } else {
+ count, err := models.GetPublicRepositoryCount(ctxUser)
+ if err != nil {
+ ctx.Handle(500, "GetPublicRepositoryCount", err)
+ return
+ }
+ total = int(count)
+ }
+
+ ctx.Data["Page"] = paginater.New(total, setting.UI.User.RepoPagingNum, page, 5)
+ ctx.Data["Total"] = total
} else {
repos, count, err = models.SearchRepositoryByName(&models.SearchRepoOptions{
Keyword: keyword,