diff options
author | Côme Chilliet <91878298+come-nc@users.noreply.github.com> | 2022-10-05 18:15:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-05 18:15:14 +0200 |
commit | 4a31d56c7a8fae520369b25c9a50fd64e1a51985 (patch) | |
tree | 7e6e6b1ef8f0196d2cf5d8c82bd6780833bbc072 | |
parent | 7d024bc337d9c9b43b80ed856c76c30e3f8edf97 (diff) | |
parent | eff877af03d2ce05f18b780383ab643741440fd1 (diff) | |
download | nextcloud-server-4a31d56c7a8fae520369b25c9a50fd64e1a51985.tar.gz nextcloud-server-4a31d56c7a8fae520369b25c9a50fd64e1a51985.zip |
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.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 { |