fix bug in validator around fullUrl testing

This commit is contained in:
Grahame Grieve 2020-01-29 06:51:22 +11:00
parent 9e8ba4b597
commit cb1fa1dad9
1 changed files with 1 additions and 1 deletions

View File

@ -3080,7 +3080,7 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat
String i = parts[1];
for (Element entry : entries) {
String fu = entry.getNamedChildValue("fullUrl");
if (u != null && fu.equals(u))
if (fu != null && fu.equals(u))
return entry;
if (u == null) {
Element resource = entry.getNamedChild("resource");