Skip to content

Commit

Permalink
Correct JIRA issue permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
mterwill committed Oct 30, 2019
1 parent a2fd31f commit d239584
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/jira/jira.go
Original file line number Diff line number Diff line change
Expand Up @@ -103,5 +103,5 @@ func (c *Client) FindIssues(ctx context.Context, jql string) (*SearchResponse, e

// LinkForIssue returns a link to the given issue
func (c *Client) LinkForIssue(i *Issue) string {
return fmt.Sprintf("https://%s/issues/%s", c.server, i.Key)
return fmt.Sprintf("https://%s/browse/%s", c.server, i.Key)
}

0 comments on commit d239584

Please sign in to comment.