fix patch urls with regard to contentReference

This commit is contained in:
Grahame Grieve 2023-03-08 09:10:52 +11:00
parent 80665f142b
commit a736979d09
1 changed files with 3 additions and 0 deletions

View File

@ -170,6 +170,9 @@ public abstract class BaseLoaderR5 implements IContextResourceLoader {
if (ed.hasBinding()) {
ed.getBinding().setValueSet(patchUrl(ed.getBinding().getValueSet(), "ValueSet"));
}
if (ed.hasContentReference()) {
ed.setContentReference(patchUrl(ed.getContentReference(), "StructureDefinition"));
}
}
}