1
0
Fork 0

Merge pull request #104 from stevegore/master

Pass MultiSelect field updates correctly
master
Bob Carroll 2015-09-20 18:33:09 -07:00
commit 12f11ce2c3
1 changed files with 2 additions and 1 deletions

View File

@ -551,7 +551,8 @@ public final class Field {
realResult = itemMap;
} else if (type.equals("string") && custom != null
&& custom.equals("com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes")) {
&& (custom.equals("com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes") ||
custom.equals("com.atlassian.jira.plugin.system.customfieldtypes:multiselect"))) {
realResult = new JSONObject();
((JSONObject)realResult).put(ValueType.VALUE.toString(), realValue.toString());