aboutsummaryrefslogtreecommitdiffstats
path: root/routers/web/explore/code.go
diff options
context:
space:
mode:
author6543 <6543@obermui.de>2021-08-11 17:08:52 +0200
committerGitHub <noreply@github.com>2021-08-11 18:08:52 +0300
commitf1a810e0901b80eb6bc21103434fc0737af17eaa (patch)
tree9656d780cf19fd745f41eef0012701458aa271c4 /routers/web/explore/code.go
parent2d25b7d44bedf8f17cc2b49f39d1cee662b199a5 (diff)
downloadgitea-f1a810e0901b80eb6bc21103434fc0737af17eaa.tar.gz
gitea-f1a810e0901b80eb6bc21103434fc0737af17eaa.zip
Related refactors to ctx.FormX functions (#16567)
* use FormTrim if posible * speedup goGet * only convert if nessesary
Diffstat (limited to 'routers/web/explore/code.go')
-rw-r--r--routers/web/explore/code.go7
1 files changed, 3 insertions, 4 deletions
diff --git a/routers/web/explore/code.go b/routers/web/explore/code.go
index 55a4409145..a9b159468d 100644
--- a/routers/web/explore/code.go
+++ b/routers/web/explore/code.go
@@ -6,7 +6,6 @@ package explore
import (
"net/http"
- "strings"
"code.gitea.io/gitea/models"
"code.gitea.io/gitea/modules/base"
@@ -33,14 +32,14 @@ func Code(ctx *context.Context) {
ctx.Data["PageIsExplore"] = true
ctx.Data["PageIsExploreCode"] = true
- language := strings.TrimSpace(ctx.FormString("l"))
- keyword := strings.TrimSpace(ctx.FormString("q"))
+ language := ctx.FormTrim("l")
+ keyword := ctx.FormTrim("q")
page := ctx.FormInt("page")
if page <= 0 {
page = 1
}
- queryType := strings.TrimSpace(ctx.FormString("t"))
+ queryType := ctx.FormTrim("t")
isMatch := queryType == "match"
var (