Compare commits
6 Commits
0.0.1-alph
...
v0.0.1-alp
| Author | SHA1 | Date | |
|---|---|---|---|
| f85fe28c53 | |||
| 82702848f9 | |||
| c52743effa | |||
| b079790183 | |||
| bae6a964eb | |||
| bab50ebfc4 |
@@ -213,7 +213,11 @@ func (c *Client) do(ctx context.Context, method, relativeURL string, reqBody int
|
||||
return fmt.Errorf("unable to parse URL: %s %s %w", method, relativeURL, err)
|
||||
}
|
||||
if !strings.HasPrefix(relativeURL, "/") && !reqURL.IsAbs() {
|
||||
reqURL.Path = path.Join(c.apiPath, reqURL.Path)
|
||||
if strings.Contains(relativeURL, "firewall/zone") {
|
||||
reqURL.Path = path.Join(c.apiV2Path, reqURL.Path)
|
||||
} else {
|
||||
reqURL.Path = path.Join(c.apiPath, reqURL.Path)
|
||||
}
|
||||
}
|
||||
|
||||
url := c.baseURL.ResolveReference(reqURL)
|
||||
|
||||
Reference in New Issue
Block a user