]> source.dussan.org Git - nextcloud-server.git/commitdiff
Pass logger to passwordless auth WebAuthn lib 34400/head
authorChristoph Wurst <christoph@winzerhof-wurst.at>
Mon, 3 Oct 2022 13:03:23 +0000 (15:03 +0200)
committerChristoph Wurst <christoph@winzerhof-wurst.at>
Mon, 3 Oct 2022 13:03:23 +0000 (15:03 +0200)
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
lib/private/Authentication/WebAuthn/Manager.php

index 1edfb6a85ed4702896e3cca835ce43fe54fada42..de22fd6d450a7d7100ab1ea7c75e391e48c3c9f7 100644 (file)
@@ -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 {