diff options
author | 6543 <6543@obermui.de> | 2021-04-09 09:40:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-09 09:40:34 +0200 |
commit | 9c4601bdf8369ed72944085e3952111cf4aeea11 (patch) | |
tree | 2dcadaabed6dbe14ddba2d2513b736ff6b7f089f /routers/api/v1/repo/issue.go | |
parent | 0991f9aa427ab923544c35d73232fa53c9db9120 (diff) | |
download | gitea-9c4601bdf8369ed72944085e3952111cf4aeea11.tar.gz gitea-9c4601bdf8369ed72944085e3952111cf4aeea11.zip |
Code Formats, Nits & Unused Func/Var deletions (#15286)
* _ to unused func options
* rm useless brakets
* rm trifial non used models functions
* rm dead code
* rm dead global vars
* fix routers/api/v1/repo/issue.go
* dont overload import module
Diffstat (limited to 'routers/api/v1/repo/issue.go')
-rw-r--r-- | routers/api/v1/repo/issue.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/routers/api/v1/repo/issue.go b/routers/api/v1/repo/issue.go index 683a2a43b7..6b46dc0fef 100644 --- a/routers/api/v1/repo/issue.go +++ b/routers/api/v1/repo/issue.go @@ -141,7 +141,6 @@ func SearchIssues(ctx *context.APIContext) { keyword = "" } var issueIDs []int64 - var labelIDs []int64 if len(keyword) > 0 && len(repoIDs) > 0 { if issueIDs, err = issue_indexer.SearchIssuesByKeyword(repoIDs, keyword); err != nil { ctx.Error(http.StatusInternalServerError, "SearchIssuesByKeyword", err) @@ -176,7 +175,7 @@ func SearchIssues(ctx *context.APIContext) { // Only fetch the issues if we either don't have a keyword or the search returned issues // This would otherwise return all issues if no issues were found by the search. - if len(keyword) == 0 || len(issueIDs) > 0 || len(labelIDs) > 0 { + if len(keyword) == 0 || len(issueIDs) > 0 || len(includedLabelNames) > 0 { issuesOpt := &models.IssuesOptions{ ListOptions: models.ListOptions{ Page: ctx.QueryInt("page"), @@ -675,7 +674,7 @@ func EditIssue(ctx *context.APIContext) { } } if form.State != nil { - issue.IsClosed = (api.StateClosed == api.StateType(*form.State)) + issue.IsClosed = api.StateClosed == api.StateType(*form.State) } statusChangeComment, titleChanged, err := models.UpdateIssueByAPI(issue, ctx.User) if err != nil { |