Unverified Commit c24324c2 authored by Eric_Lee's avatar Eric_Lee Committed by GitHub

Merge pull request #121 from jumpserver/bugfix

[Bugfix] escape url query string
parents 981f283e 178493e7
......@@ -2,6 +2,7 @@ package service
import (
"fmt"
"net/url"
"strconv"
"github.com/jumpserver/koko/pkg/logger"
......@@ -13,7 +14,7 @@ func GetUserAssets(userID, search string, pageSize, offset int) (resp model.Asse
pageSize = 0
}
params := map[string]string{
"search": search,
"search": url.QueryEscape(search),
"limit": strconv.Itoa(pageSize),
"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