mirror of https://github.com/go-gitea/gitea.git
fix panic when get user repos from api (#1110)
This commit is contained in:
parent
d2165a5890
commit
c1d5983d3e
|
@ -25,8 +25,8 @@ func listUserRepos(ctx *context.APIContext, u *models.User) {
|
||||||
apiRepos[i] = ownRepos[i].APIFormat(models.AccessModeOwner)
|
apiRepos[i] = ownRepos[i].APIFormat(models.AccessModeOwner)
|
||||||
}
|
}
|
||||||
// Set repositories user has access to.
|
// Set repositories user has access to.
|
||||||
for i := len(ownRepos); i < len(apiRepos); i++ {
|
for i := 0; i < len(accessibleRepos); i++ {
|
||||||
apiRepos[i] = accessibleRepos[i]
|
apiRepos[i+len(ownRepos)] = accessibleRepos[i]
|
||||||
}
|
}
|
||||||
ctx.JSON(200, &apiRepos)
|
ctx.JSON(200, &apiRepos)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue