Skip to content

Commit

Permalink
Merge pull request #9 from iriusrisk/hotfix/RT-593
Browse files Browse the repository at this point in the history
[RT-593] to master
  • Loading branch information
cbernalIrius authored Jul 12, 2022
2 parents f7ec943 + 42fc43a commit c55832a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 14 deletions.
12 changes: 0 additions & 12 deletions CHANGELOG.md

This file was deleted.

2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>net.rcarz</groupId>
<artifactId>jira-client</artifactId>
<version>0.8.0-IRIUS-SNAPSHOT</version>
<version>0.8.1-IRIUS-SNAPSHOT</version>
<packaging>jar</packaging>

<name>jira-client</name>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/net/rcarz/jiraclient/Field.java
Original file line number Diff line number Diff line change
Expand Up @@ -740,7 +740,7 @@ else if (value instanceof ValueTuple) {
json.put(ValueType.KEY.toString(), value.toString());

return json.toString();
} else if (m.type.equals("string") || (m.type.equals("securitylevel"))) {
} else if (m.type.equals("string") || m.type.equals("securitylevel") || m.type.equals("any")) {
if (value == null)
return "";
else if (value instanceof List)
Expand Down

0 comments on commit c55832a

Please sign in to comment.