diff options
Diffstat (limited to 'routers/user/home.go')
-rw-r--r-- | routers/user/home.go | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/routers/user/home.go b/routers/user/home.go index 883adf4e6c..daa58b2604 100644 --- a/routers/user/home.go +++ b/routers/user/home.go @@ -8,6 +8,7 @@ import ( "bytes" "fmt" "sort" + "strings" "code.gitea.io/gitea/models" "code.gitea.io/gitea/modules/base" @@ -256,7 +257,16 @@ func Issues(ctx *context.Context) { opts.Page = page opts.PageSize = setting.UI.IssuePagingNum - opts.Labels = ctx.Query("labels") + var labelIDs []int64 + selectLabels := ctx.Query("labels") + if len(selectLabels) > 0 && selectLabels != "0" { + labelIDs, err = base.StringsToInt64s(strings.Split(selectLabels, ",")) + if err != nil { + ctx.ServerError("StringsToInt64s", err) + return + } + } + opts.LabelIDs = labelIDs issues, err := models.Issues(opts) if err != nil { |