mirror of
https://github.com/hapifhir/org.hl7.fhir.core.git
synced 2025-03-02 09:29:13 +00:00
Fix bug in package loader - allow loading version with later patch if old version is missing
This commit is contained in:
parent
2d8ac6f377
commit
1e16f02b48
@ -221,6 +221,11 @@ public class FilesystemPackageCacheManager extends BasePackageCacheManager imple
|
||||
return retVal;
|
||||
}
|
||||
|
||||
retVal = super.loadFromPackageServer(id, VersionUtilities.getMajMin(version)+".x");
|
||||
if (retVal != null) {
|
||||
return retVal;
|
||||
}
|
||||
|
||||
// ok, well, we'll try the old way
|
||||
return fetchTheOldWay(id, version);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user