mirror of
https://github.com/go-gitea/gitea.git
synced 2025-09-12 18:35:17 +00:00
refactor: remove redundant err declarations (#32381)
This commit is contained in:
@@ -202,7 +202,6 @@ func Search(ctx *context.APIContext) {
|
||||
}
|
||||
}
|
||||
|
||||
var err error
|
||||
repos, count, err := repo_model.SearchRepository(ctx, opts)
|
||||
if err != nil {
|
||||
ctx.JSON(http.StatusInternalServerError, api.SearchError{
|
||||
|
@@ -111,7 +111,6 @@ func ListMyRepos(ctx *context.APIContext) {
|
||||
IncludeDescription: true,
|
||||
}
|
||||
|
||||
var err error
|
||||
repos, count, err := repo_model.SearchRepository(ctx, opts)
|
||||
if err != nil {
|
||||
ctx.Error(http.StatusInternalServerError, "SearchRepository", err)
|
||||
|
Reference in New Issue
Block a user