From ce85a63dab5fe973f0cdf00a2542a156af25c780 Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Sat, 25 Jan 2025 11:12:31 +0100 Subject: [PATCH] fixup Signed-off-by: Ferdinand Thiessen --- lib/private/User/Database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/User/Database.php b/lib/private/User/Database.php index 2770efe20ebe5..b43fe1a8f1e21 100644 --- a/lib/private/User/Database.php +++ b/lib/private/User/Database.php @@ -417,8 +417,8 @@ private function loadUser(string $loginName, bool $tryEmail = true): bool { $this->cache[$loginName] = $this->cache[$emailUId]; // Set a reference to the uid cache entry for also delete email entry on user delete $this->cache[$emailUId]['email'] = $loginName; + return true; } - return $result; } }