Skip to content

Commit

Permalink
Merge branch 'master' into bugfix/endring-direkte-vergemaal
Browse files Browse the repository at this point in the history
  • Loading branch information
stigus committed Sep 6, 2024
2 parents e877ee5 + 42e805b commit ca11a7c
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -419,6 +419,10 @@ public List<BestillingProgress> getProgressByBestillingId(Long bestillingId) {

private String filterAvailable(Collection<String> environments) {

if (isNull(environments) || environments.isEmpty()) {
return null;
}

var miljoer = miljoerConsumer.getMiljoer().block();

if (isNull(miljoer)) {
Expand Down

0 comments on commit ca11a7c

Please sign in to comment.