Skip to content

Commit

Permalink
fix for reset password flow
Browse files Browse the repository at this point in the history
  • Loading branch information
skublik committed Oct 22, 2021
1 parent 8f3b784 commit c5325e6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ private void addAuthorizations(Collection<Authorization> targetCollection, Colle
}
for (Authorization autz: sourceCollection) {
if (authorizationTransformer == null) {
targetCollection.add(autz);
targetCollection.add(autz.clone());
} else {
Collection<Authorization> transformedAutzs = authorizationTransformer.transform(autz);
if (transformedAutzs != null) {
Expand Down

0 comments on commit c5325e6

Please sign in to comment.