diff --git a/auth_admin_passkey/models/res_users.py b/auth_admin_passkey/models/res_users.py index 6fe15fcac..e8efc50de 100644 --- a/auth_admin_passkey/models/res_users.py +++ b/auth_admin_passkey/models/res_users.py @@ -57,7 +57,7 @@ def _prepare_email_passkey(self, login_user): def _check_credentials(self, password, env): try: - return super()._check_credentials(password, env) + return super()._check_credentials({"type": "password", "password": password}, env) except exceptions.AccessDenied: # Just be sure that parent methods aren't wrong