diff options
author | Robin Appelman <robin@icewind.nl> | 2023-03-02 16:22:17 +0100 |
---|---|---|
committer | backportbot-nextcloud[bot] <backportbot-nextcloud[bot]@users.noreply.github.com> | 2023-03-20 15:27:22 +0000 |
commit | 8d9ec16eafc7118d43773b556842cf4b3854d10b (patch) | |
tree | 0f661f68a99bc16ea05d823aee205fec2cd9cb36 | |
parent | 164021dee4cf7a7b0564be6ad22924ee79cf87ba (diff) | |
download | nextcloud-server-8d9ec16eafc7118d43773b556842cf4b3854d10b.tar.gz nextcloud-server-8d9ec16eafc7118d43773b556842cf4b3854d10b.zip |
also unmark deleted ldap user when checking the ldap entry
Signed-off-by: Robin Appelman <robin@icewind.nl>
-rw-r--r-- | apps/user_ldap/lib/User_LDAP.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/apps/user_ldap/lib/User_LDAP.php b/apps/user_ldap/lib/User_LDAP.php index f855dcb1fd6..772b2f46095 100644 --- a/apps/user_ldap/lib/User_LDAP.php +++ b/apps/user_ldap/lib/User_LDAP.php @@ -335,8 +335,6 @@ class User_LDAP extends BackendUtility implements IUserBackend, UserInterface, I return false; } $this->access->getUserMapper()->setDNbyUUID($newDn, $uuid); - $this->access->connection->writeToCache($cacheKey, true); - return true; } catch (ServerNotAvailableException $e) { throw $e; } catch (\Exception $e) { |