fix hidden check

This commit is contained in:
Dag Heyman 2017-09-05 14:41:47 +02:00
parent ba413b0b2e
commit ab1f9619d2
No known key found for this signature in database
GPG Key ID: 06FC004369E7D338

View File

@ -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):