Leave off extra leading slash in bulk requests
This commit is contained in:
parent
e89f41828e
commit
2715203d96
@ -47,7 +47,10 @@ type Request struct {
|
|||||||
|
|
||||||
// URL builds a URL for a Request
|
// URL builds a URL for a Request
|
||||||
func (req *Request) URL() *url.URL {
|
func (req *Request) URL() *url.URL {
|
||||||
path := "/" + strings.Join(req.IndexList, ",")
|
var path string
|
||||||
|
if len(req.IndexList) > 0 {
|
||||||
|
path = "/" + strings.Join(req.IndexList, ",")
|
||||||
|
}
|
||||||
|
|
||||||
if len(req.TypeList) > 0 {
|
if len(req.TypeList) > 0 {
|
||||||
path += "/" + strings.Join(req.TypeList, ",")
|
path += "/" + strings.Join(req.TypeList, ",")
|
||||||
|
Loading…
Reference in New Issue
Block a user