Commit 178493e7 authored by Eric's avatar Eric

[Bugfix] escape url query string

parent 981f283e
...@@ -2,6 +2,7 @@ package service ...@@ -2,6 +2,7 @@ package service
import ( import (
"fmt" "fmt"
"net/url"
"strconv" "strconv"
"github.com/jumpserver/koko/pkg/logger" "github.com/jumpserver/koko/pkg/logger"
...@@ -13,7 +14,7 @@ func GetUserAssets(userID, search string, pageSize, offset int) (resp model.Asse ...@@ -13,7 +14,7 @@ func GetUserAssets(userID, search string, pageSize, offset int) (resp model.Asse
pageSize = 0 pageSize = 0
} }
params := map[string]string{ params := map[string]string{
"search": search, "search": url.QueryEscape(search),
"limit": strconv.Itoa(pageSize), "limit": strconv.Itoa(pageSize),
"offset": strconv.Itoa(offset), "offset": strconv.Itoa(offset),
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment