Fixes bug on fetching Datasets.
This commit is contained in:
parent
4efdf42b94
commit
4e3a3b573a
|
@ -199,7 +199,7 @@ public class Field implements Comparable, PropertiesModelBuilder, ViewStyleDefin
|
|||
stringList.add(jsonArray.getJSONObject(i).toString());
|
||||
}
|
||||
this.value = stringList;
|
||||
} catch (JSONException e) {
|
||||
} catch (JSONException | NullPointerException e) {
|
||||
this.value = (String) properties.get(this.id);
|
||||
}
|
||||
this.multiplicityItems = new LinkedList<>();
|
||||
|
|
Loading…
Reference in New Issue