work around bug in template OO
This commit is contained in:
parent
f3413dad23
commit
275d83a4c7
|
@ -23795,7 +23795,9 @@ public class JsonParser extends JsonParserBase {
|
|||
if (json.has("issue")) {
|
||||
JsonArray array = getJArray(json, "issue");
|
||||
for (int i = 0; i < array.size(); i++) {
|
||||
res.getIssue().add(parseOperationOutcomeIssueComponent(array.get(i).getAsJsonObject()));
|
||||
if (array.get(i).isJsonObject()) {
|
||||
res.getIssue().add(parseOperationOutcomeIssueComponent(array.get(i).getAsJsonObject()));
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue