allow absolute url for type.code

This commit is contained in:
Oliver Egger 2019-10-22 14:06:26 +02:00
parent 0b196e5188
commit a67fe0b346
1 changed files with 1 additions and 1 deletions

View File

@ -2354,7 +2354,7 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat
long t = System.nanoTime();
StructureDefinition sd = context.fetchResource(StructureDefinition.class, url);
sdTime = sdTime + (System.nanoTime() - t);
if (sd != null && (sd.getType().equals(type) || sd.getUrl().equals("http://hl7.org/fhir/StructureDefinition/" + type)) && sd.hasSnapshot())
if (sd != null && (sd.getType().equals(type) || sd.getUrl().equals(url)) && sd.hasSnapshot())
return sd;
}
return null;