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:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2022-10-03 16:03:23 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2022-10-03 16:03:23 +0300
commiteff877af03d2ce05f18b780383ab643741440fd1 (patch)
tree870b2e8caf6286f2569bde459767362a75427fb5
parent9c516c2009d932d29d93c451e510a361723fe491 (diff)
Pass logger to passwordless auth WebAuthn libenhancement/passwordless-auth-logging
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
-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 {