Skip to content

Commit

Permalink
fix: base uri format fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Geun-Oh committed Nov 1, 2023
1 parent b81e4ab commit ab57a69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ func main() {

// getVerson

uri := `https://` + domain + `atlassian.net/rest/api/3/project/` + project + `/version?query=` + url.QueryEscape(releaseName) + `&orderBy=name&status=unreleased`
uri := `https://` + domain + `.atlassian.net/rest/api/3/project/` + project + `/version?query=` + url.QueryEscape(releaseName) + `&orderBy=name&status=unreleased`
req, err := http.NewRequest("GET", uri, nil)
if err != nil {
panic(err)
Expand Down

0 comments on commit ab57a69

Please sign in to comment.