Skip to content

Commit

Permalink
fix: jans-cli fido2 (ref: #3046)
Browse files Browse the repository at this point in the history
  • Loading branch information
devrimyatar committed Nov 21, 2022
1 parent 8ef02ba commit ea7be89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jans-cli-tui/cli_tui/plugins/020_fido/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def create_widgets(self):

requested_parties_data = []
for rp in fido2_static_config.get('requestedParties', {}):
requested_parties_data.append([rp['name'], ', '.join(rp.get('domains', []))])
requested_parties_data.append([rp.get('name',''), ', '.join(rp.get('domains', []))])

self.requested_parties_container = JansVerticalNav(
myparent=self.app,
Expand Down

0 comments on commit ea7be89

Please sign in to comment.