Bump org.hl7.fhir.core to 6.3.23 (#6266)
* Bump org.hl7.fhir.core to 6.3.23 * Fix breaking test (check for no value and null) * Fix typo
This commit is contained in:
parent
12765ac397
commit
d9f3ac1c3b
|
@ -4,6 +4,7 @@
|
|||
title: "The version of a few dependencies have been bumped to more recent versions
|
||||
(dependent HAPI modules listed in brackets):
|
||||
<ul>
|
||||
<li>org.hl7.fhir.core (Base): 6.3.18 -> 6.3.23</li>
|
||||
<li>Bower/Moment.js (hapi-fhir-testpage-overlay): 2.27.0 -> 2.29.4</li>
|
||||
<li>htmlunit (Base): 3.9.0 -> 3.11.0</li>
|
||||
<li>Elasticsearch (Base): 8.11.1 -> 8.14.3</li>
|
||||
|
|
|
@ -588,8 +588,8 @@ public class PackageInstallerSvcImpl implements IPackageInstallerSvc {
|
|||
if (statusTypes.isEmpty()) {
|
||||
return true;
|
||||
}
|
||||
// Resource has a null status field
|
||||
if (statusTypes.get(0).getValue() == null) {
|
||||
// Resource has no status field, or an explicitly null one
|
||||
if (!statusTypes.get(0).hasValue() || statusTypes.get(0).getValue() == null) {
|
||||
return false;
|
||||
}
|
||||
// Resource has a status, and we need to check based on type
|
||||
|
|
Loading…
Reference in New Issue