Skip to content

Commit

Permalink
minor: release changes (#234)
Browse files Browse the repository at this point in the history
* Fixing dueDate to duedate (#216)

* major: trigger upgrade (#220)

* fix: rm changes

* fix: allow for custom api hostname for regional instance (#224)

* patch: bump x text version (#226)

* fix: Support hyphens in custom jiraValue values (#232)

---------

Co-authored-by: Arya Shajpaul <[email protected]>
Co-authored-by: Stephen J. Collings <[email protected]>
  • Loading branch information
3 people authored Oct 29, 2024
1 parent 2fe8a94 commit 1910147
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jira_utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ https://developer.atlassian.com/server/jira/platform/jira-rest-api-example-creat
*/
func supportJiraFormats(v string, customDebug debug) (result interface{}, err error) {

valueSplit := strings.Split(v, "-")
valueSplit := strings.SplitN(v, "-", 3)

switch valueSplit[1] {
case JiraMultiSelect:
Expand Down

0 comments on commit 1910147

Please sign in to comment.