We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d81a602 commit 745c72cCopy full SHA for 745c72c
jsonvalidator-common/src/main/java/eu/europa/ec/itb/json/validation/location/NodeCoordinateDetector.java
@@ -57,7 +57,7 @@ public String apply(String path) {
57
if (rootNode != null && locationAwareFactory != null && StringUtils.isNotBlank(path)) {
58
try {
59
var relatedNode = rootNode.at(JsonPointer.compile(path));
60
- if (relatedNode != null) {
+ if (relatedNode != null && !relatedNode.isMissingNode()) {
61
location = locationAwareFactory.getLocationForNode(relatedNode);
62
}
63
} catch (RuntimeException e) {
0 commit comments