fix bug in validator around fullUrl testing
This commit is contained in:
parent
9e8ba4b597
commit
cb1fa1dad9
|
@ -3080,7 +3080,7 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat
|
||||||
String i = parts[1];
|
String i = parts[1];
|
||||||
for (Element entry : entries) {
|
for (Element entry : entries) {
|
||||||
String fu = entry.getNamedChildValue("fullUrl");
|
String fu = entry.getNamedChildValue("fullUrl");
|
||||||
if (u != null && fu.equals(u))
|
if (fu != null && fu.equals(u))
|
||||||
return entry;
|
return entry;
|
||||||
if (u == null) {
|
if (u == null) {
|
||||||
Element resource = entry.getNamedChild("resource");
|
Element resource = entry.getNamedChild("resource");
|
||||||
|
|
Loading…
Reference in New Issue