Skip to content

Commit

Permalink
SHIBUI-2380
Browse files Browse the repository at this point in the history
Incremental commit:
- correcting audience to audiences in the JSON
  • Loading branch information
chasegawa committed Sep 22, 2022
1 parent f5edb22 commit fa27801
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ private Map<String, Object> buildOAuthRPExtensionsMap(EntityDescriptor ed) {
if (oAuthRPExtensions.getAudiences().size() > 0){
List<String> audiences = new ArrayList<>();
oAuthRPExtensions.getAudiences().forEach(aud -> audiences.add(aud.getURI()));
result.put("audience", audiences);
result.put("audiences", audiences);
}
}
}
Expand Down

0 comments on commit fa27801

Please sign in to comment.