From f64efcf3c6d258a0f522249223595ec677907bfd Mon Sep 17 00:00:00 2001
From: catch <catch@35733.no-reply.drupal.org>
Date: Mon, 11 Mar 2024 10:14:38 +0000
Subject: [PATCH] Revert "Issue #3425342 by alexpott: Optimize
 \Drupal\basic_auth\Authentication\Provider\BasicAuth::authenticate()"

This reverts commit b6bee80d9a28cf2c6d29d7db4c09c9f606e41715.
---
 .../basic_auth/src/Authentication/Provider/BasicAuth.php      | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/core/modules/basic_auth/src/Authentication/Provider/BasicAuth.php b/core/modules/basic_auth/src/Authentication/Provider/BasicAuth.php
index d59a03f45bf5..0e306a5b3595 100644
--- a/core/modules/basic_auth/src/Authentication/Provider/BasicAuth.php
+++ b/core/modules/basic_auth/src/Authentication/Provider/BasicAuth.php
@@ -107,10 +107,10 @@ public function authenticate(Request $request) {
         // Don't allow login if the limit for this user has been reached.
         // Default is to allow 5 failed attempts every 6 hours.
         if ($this->flood->isAllowed('basic_auth.failed_login_user', $flood_config->get('user_limit'), $flood_config->get('user_window'), $identifier)) {
-          $uid = $this->userAuth->authenticateAccount($account, $password);
+          $uid = $this->userAuth->authenticate($username, $password);
           if ($uid) {
             $this->flood->clear('basic_auth.failed_login_user', $identifier);
-            return $account;
+            return $this->entityTypeManager->getStorage('user')->load($uid);
           }
           else {
             // Register a per-user failed login event.
-- 
GitLab