Leave off extra leading slash in bulk requests

This commit is contained in:
Paul Bonser 2016-10-13 02:54:52 -05:00
parent e89f41828e
commit 2715203d96

View File

@ -47,7 +47,10 @@ type Request struct {
// URL builds a URL for a Request
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 {
path += "/" + strings.Join(req.TypeList, ",")