mirror of
https://github.com/miniflux/v2.git
synced 2025-06-27 16:36:00 +00:00
fix(webauthn): correct arg in debug log
This commit is contained in:
parent
3818a8a4fb
commit
81ec32a8b6
1 changed files with 1 additions and 1 deletions
|
@ -209,7 +209,7 @@ func (h *handler) finishLogin(w http.ResponseWriter, r *http.Request) {
|
|||
|
||||
slog.Debug("WebAuthn: parsed response flags",
|
||||
slog.Bool("user_present", parsedResponse.Response.AuthenticatorData.Flags.HasUserPresent()),
|
||||
slog.Bool("user_verified", parsedResponse.Response.AuthenticatorData.Flags.HasUserPresent()),
|
||||
slog.Bool("user_verified", parsedResponse.Response.AuthenticatorData.Flags.HasUserVerified()),
|
||||
slog.Bool("has_attested_credential_data", parsedResponse.Response.AuthenticatorData.Flags.HasAttestedCredentialData()),
|
||||
slog.Bool("has_backup_eligible", parsedResponse.Response.AuthenticatorData.Flags.HasBackupEligible()),
|
||||
slog.Bool("has_backup_state", parsedResponse.Response.AuthenticatorData.Flags.HasBackupState()),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue