fix patch urls with regard to contentReference
This commit is contained in:
parent
80665f142b
commit
a736979d09
|
@ -170,6 +170,9 @@ public abstract class BaseLoaderR5 implements IContextResourceLoader {
|
||||||
if (ed.hasBinding()) {
|
if (ed.hasBinding()) {
|
||||||
ed.getBinding().setValueSet(patchUrl(ed.getBinding().getValueSet(), "ValueSet"));
|
ed.getBinding().setValueSet(patchUrl(ed.getBinding().getValueSet(), "ValueSet"));
|
||||||
}
|
}
|
||||||
|
if (ed.hasContentReference()) {
|
||||||
|
ed.setContentReference(patchUrl(ed.getContentReference(), "StructureDefinition"));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue