Skip to content

Commit

Permalink
v070
Browse files Browse the repository at this point in the history
  • Loading branch information
oliveregger committed May 14, 2024
1 parent 009f7d3 commit 659cde2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 2024/05/15 v068
## 2024/05/15 v070
- support for multiple IDP's [128](https://github.com/i4mi/MobileAccessGateway/issues/128)
- reenable $find-medication-list
- use IdP also for patient access in web app
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public ChQueryRegistry operationFindMedicationListToFindMedicationListQuery(@Bod
if (statusTypes != null) {
List<AvailabilityStatus> availabilites = new ArrayList<AvailabilityStatus>();
for (Parameters.ParametersParameterComponent status : statusTypes) {
String tokenValue = status.primitiveValue();
String tokenValue = status.getValue().toString();
if (tokenValue !=null) {
if (tokenValue.equals("current"))
availabilites.add(AvailabilityStatus.APPROVED);
Expand Down

0 comments on commit 659cde2

Please sign in to comment.