Skip to content

Commit

Permalink
Update JiraService.java
Browse files Browse the repository at this point in the history
  • Loading branch information
cx-scord committed Sep 27, 2021
1 parent 5b873cd commit 3719d31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/checkmarx/flow/service/JiraService.java
Original file line number Diff line number Diff line change
Expand Up @@ -673,7 +673,7 @@ private void mapCustomFields(ScanRequest request, ScanResults.XIssue issue, Issu
String[] l = StringUtils.split(value, ",");
list = new ArrayList<>();
for (String x : l) {
list.add(x.replaceAll("[^a-zA-Z0-9:-_]+", "_"));
list.add(x.replaceAll("[^a-zA-Z0-9:\\-_]+", "_"));
}

if (!ScanUtils.empty(list)) {
Expand Down

0 comments on commit 3719d31

Please sign in to comment.