summaryrefslogtreecommitdiffstats
path: root/routers/api/v1/user/repo.go
diff options
context:
space:
mode:
Diffstat (limited to 'routers/api/v1/user/repo.go')
-rw-r--r--routers/api/v1/user/repo.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/routers/api/v1/user/repo.go b/routers/api/v1/user/repo.go
index d80e3a9baf..8b7ee92c62 100644
--- a/routers/api/v1/user/repo.go
+++ b/routers/api/v1/user/repo.go
@@ -25,8 +25,8 @@ func listUserRepos(ctx *context.APIContext, u *models.User) {
apiRepos[i] = ownRepos[i].APIFormat(models.AccessModeOwner)
}
// Set repositories user has access to.
- for i := len(ownRepos); i < len(apiRepos); i++ {
- apiRepos[i] = accessibleRepos[i]
+ for i := 0; i < len(accessibleRepos); i++ {
+ apiRepos[i+len(ownRepos)] = accessibleRepos[i]
}
ctx.JSON(200, &apiRepos)
}