1
0
Fork 0

Merge pull request #176 from rasei/fix-for-#175

Fixed #175
master
Bob Carroll 2017-07-02 11:43:08 -07:00 committed by GitHub
commit beac11cc50
1 changed files with 1 additions and 1 deletions

View File

@ -707,7 +707,7 @@ public final class Field {
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("option"))) {
if (value == null)
return "";
else if (value instanceof List)