Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCôme Chilliet <91878298+come-nc@users.noreply.github.com>2022-10-05 19:15:14 +0300
committerGitHub <noreply@github.com>2022-10-05 19:15:14 +0300
commit4a31d56c7a8fae520369b25c9a50fd64e1a51985 (patch)
tree7e6e6b1ef8f0196d2cf5d8c82bd6780833bbc072
parent7d024bc337d9c9b43b80ed856c76c30e3f8edf97 (diff)
parenteff877af03d2ce05f18b780383ab643741440fd1 (diff)
Merge pull request #34400 from nextcloud/enhancement/passwordless-auth-logging
Pass logger to passwordless auth WebAuthn lib
-rw-r--r--lib/private/Authentication/WebAuthn/Manager.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/private/Authentication/WebAuthn/Manager.php b/lib/private/Authentication/WebAuthn/Manager.php
index 1edfb6a85ed..de22fd6d450 100644
--- a/lib/private/Authentication/WebAuthn/Manager.php
+++ b/lib/private/Authentication/WebAuthn/Manager.php
@@ -145,6 +145,7 @@ class Manager {
$tokenBindingHandler,
$extensionOutputCheckerHandler
);
+ $authenticatorAttestationResponseValidator->setLogger($this->logger);
try {
// Load the data
@@ -212,7 +213,9 @@ class Manager {
$this->repository,
$tokenBindingHandler,
$extensionOutputCheckerHandler,
- $algorithmManager
+ $algorithmManager,
+ null,
+ $this->logger,
);
try {