Skip to content

Commit

Permalink
InCommon: no duplicate IDPs
Browse files Browse the repository at this point in the history
  • Loading branch information
paulineribeyre committed May 3, 2022
1 parent dfdde51 commit c54ba6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fence/blueprints/login/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def provider_info(login_details):
elif isinstance(requested_shib_idps, list):
# get the display names for each requested shib IDP
shib_idps = []
for requested_shib_idp in requested_shib_idps:
for requested_shib_idp in set(requested_shib_idps):
shib_idp = next(
(
available_shib_idp
Expand Down

0 comments on commit c54ba6b

Please sign in to comment.