Skip to content

Commit

Permalink
chore: fix main after changes in edc-extensions (#186)
Browse files Browse the repository at this point in the history
  • Loading branch information
richardtreier authored Jul 10, 2023
1 parent 52ab0b2 commit 57206a9
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ public class PolicyDtoBuilder {

@SneakyThrows
public PolicyDto buildPolicyFromJson(@NonNull String policyJson) {
return new PolicyDto(policyJson);
var policyDto = new PolicyDto();
policyDto.setLegacyPolicy(policyJson);
return policyDto;
}
}

0 comments on commit 57206a9

Please sign in to comment.