mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-30 09:47:43 +03:00
fix hidden check
This commit is contained in:
parent
ba413b0b2e
commit
ab1f9619d2
@ -220,7 +220,7 @@ class Controller(object):
|
||||
if controller.locked and password_key is not None:
|
||||
controller.validate(a2b_hex(password_key))
|
||||
creds = controller.calculate_all(timestamp)
|
||||
creds = [c for c in creds if not c.hidden]
|
||||
creds = [c for c in creds if not c.is_hidden()]
|
||||
return creds
|
||||
|
||||
def parse_qr(self, screenshot):
|
||||
|
Loading…
Reference in New Issue
Block a user