Skip to content

Commit

Permalink
fix for #2122
Browse files Browse the repository at this point in the history
  • Loading branch information
cliviu committed Jun 12, 2020
1 parent 6555a1a commit 8757899
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -277,7 +277,7 @@ public void setJiraUsername(String jiraUsername) {
}

public void setTags(String tags) {
this.tags = (tags != null) ? tags.replaceAll("\\s+((or)|(OR))\\s+",",") : null;
this.tags = (tags != null) ? tags.replaceAll("\\s+((or)|(OR)|(and)|(AND))\\s+",",") : null;
}

public void setJiraPassword(String jiraPassword) {
Expand Down

0 comments on commit 8757899

Please sign in to comment.