diff options
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 { |