Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/andygrunwald/go-jira/v2
module github.com/andygrunwald/go-jira-search-v3/v1

go 1.21

Expand Down
2 changes: 1 addition & 1 deletion onpremise/issue.go
Original file line number Diff line number Diff line change
Expand Up @@ -1045,7 +1045,7 @@ func (s *IssueService) AddLink(ctx context.Context, issueLink *IssueLink) (*Resp
// This double check effort is done for v2 - Remove this two lines if this is completed.
func (s *IssueService) Search(ctx context.Context, jql string, options *SearchOptions) ([]Issue, *Response, error) {
u := url.URL{
Path: "rest/api/2/search",
Path: "rest/api/3/search/jql",
}
uv := url.Values{}
if jql != "" {
Expand Down