diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2022-10-03 15:03:23 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2022-10-03 15:03:23 +0200 |
commit | eff877af03d2ce05f18b780383ab643741440fd1 (patch) | |
tree | 870b2e8caf6286f2569bde459767362a75427fb5 /lib/private | |
parent | 9c516c2009d932d29d93c451e510a361723fe491 (diff) | |
download | nextcloud-server-eff877af03d2ce05f18b780383ab643741440fd1.tar.gz nextcloud-server-eff877af03d2ce05f18b780383ab643741440fd1.zip |
Pass logger to passwordless auth WebAuthn lib
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/private')
-rw-r--r-- | lib/private/Authentication/WebAuthn/Manager.php | 5 |
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 { |