diff options
Diffstat (limited to 'core/Controller')
-rw-r--r-- | core/Controller/LoginController.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/Controller/LoginController.php b/core/Controller/LoginController.php index 5f94c8f8a32..af43f2d4c4a 100644 --- a/core/Controller/LoginController.php +++ b/core/Controller/LoginController.php @@ -38,7 +38,6 @@ namespace OC\Core\Controller; use OC\Authentication\Login\Chain; use OC\Authentication\Login\LoginData; use OC\Authentication\WebAuthn\Manager as WebAuthnManager; -use OC\Security\Bruteforce\Throttler; use OC\User\Session; use OC_App; use OCP\AppFramework\Controller; @@ -58,6 +57,7 @@ use OCP\IURLGenerator; use OCP\IUser; use OCP\IUserManager; use OCP\Notification\IManager; +use OCP\Security\Bruteforce\IThrottler; use OCP\Util; #[IgnoreOpenAPI] @@ -74,7 +74,7 @@ class LoginController extends Controller { private Session $userSession, private IURLGenerator $urlGenerator, private Defaults $defaults, - private Throttler $throttler, + private IThrottler $throttler, private IInitialStateService $initialStateService, private WebAuthnManager $webAuthnManager, private IManager $manager, |