mirror of https://github.com/go-gitea/gitea.git
Co-authored-by: zeripath <art27@cantab.net>
This commit is contained in:
parent
2c903383b5
commit
e959d1a48b
|
@ -538,13 +538,17 @@ func Issues(ctx *context.Context) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
issueStats, err := models.GetUserIssueStats(models.UserIssueStatsOptions{
|
issueStatsOpts := models.UserIssueStatsOptions{
|
||||||
UserID: ctxUser.ID,
|
UserID: ctxUser.ID,
|
||||||
UserRepoIDs: userRepoIDs,
|
UserRepoIDs: userRepoIDs,
|
||||||
FilterMode: filterMode,
|
FilterMode: filterMode,
|
||||||
IsPull: isPullList,
|
IsPull: isPullList,
|
||||||
IsClosed: isShowClosed,
|
IsClosed: isShowClosed,
|
||||||
})
|
}
|
||||||
|
if len(repoIDs) > 0 {
|
||||||
|
issueStatsOpts.UserRepoIDs = repoIDs
|
||||||
|
}
|
||||||
|
issueStats, err := models.GetUserIssueStats(issueStatsOpts)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ctx.ServerError("GetUserIssueStats", err)
|
ctx.ServerError("GetUserIssueStats", err)
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in New Issue