From edeccde9f3e4f68ed467b7144c48cab78e6bbda3 Mon Sep 17 00:00:00 2001 From: Andrew Kozlik Date: Fri, 24 Feb 2023 18:49:23 +0100 Subject: [PATCH] fix(core): Show app icon in Fido2ConfirmNoCredentials. [no changelog] --- core/src/apps/webauthn/fido2.py | 1 + 1 file changed, 1 insertion(+) diff --git a/core/src/apps/webauthn/fido2.py b/core/src/apps/webauthn/fido2.py index ae3de42fde..1d8a1f5e28 100644 --- a/core/src/apps/webauthn/fido2.py +++ b/core/src/apps/webauthn/fido2.py @@ -930,6 +930,7 @@ class Fido2ConfirmNoCredentials(Fido2ConfirmGetAssertion): def __init__(self, cid: int, iface: HID, rp_id: str) -> None: cred = Fido2Credential() cred.rp_id = rp_id + cred.rp_id_hash = hashlib.sha256(rp_id).digest() super().__init__( cid, iface, b"", [cred], {}, resident=False, user_verification=False )