From f1a810e0901b80eb6bc21103434fc0737af17eaa Mon Sep 17 00:00:00 2001 From: 6543 <6543@obermui.de> Date: Wed, 11 Aug 2021 17:08:52 +0200 Subject: Related refactors to ctx.FormX functions (#16567) * use FormTrim if posible * speedup goGet * only convert if nessesary --- routers/api/v1/user/user.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'routers/api/v1/user/user.go') diff --git a/routers/api/v1/user/user.go b/routers/api/v1/user/user.go index db950bd1ee..e00c8d476d 100644 --- a/routers/api/v1/user/user.go +++ b/routers/api/v1/user/user.go @@ -8,7 +8,6 @@ package user import ( "fmt" "net/http" - "strings" "code.gitea.io/gitea/models" "code.gitea.io/gitea/modules/context" @@ -58,7 +57,7 @@ func Search(ctx *context.APIContext) { opts := &models.SearchUserOptions{ Actor: ctx.User, - Keyword: strings.Trim(ctx.FormString("q"), " "), + Keyword: ctx.FormTrim("q"), UID: ctx.FormInt64("uid"), Type: models.UserTypeIndividual, ListOptions: listOptions, -- cgit v1.2.3