diff options
author | Robin Appelman <robin@icewind.nl> | 2022-03-08 15:48:02 +0100 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2022-03-24 17:00:57 +0100 |
commit | c80ba69b7a2470d429f027584f2c049770508cb0 (patch) | |
tree | 6bbeaa3923c95ff8e67b034caa95f3236a0f8e7e /apps/dav/lib/Connector | |
parent | 114af08043d77dd4feca93ea1d56a0506cbfec47 (diff) | |
download | nextcloud-server-c80ba69b7a2470d429f027584f2c049770508cb0.tar.gz nextcloud-server-c80ba69b7a2470d429f027584f2c049770508cb0.zip |
dont setup full fs after dav auth
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'apps/dav/lib/Connector')
-rw-r--r-- | apps/dav/lib/Connector/Sabre/Auth.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/apps/dav/lib/Connector/Sabre/Auth.php b/apps/dav/lib/Connector/Sabre/Auth.php index 71e833809ac..df4e3c65ce0 100644 --- a/apps/dav/lib/Connector/Sabre/Auth.php +++ b/apps/dav/lib/Connector/Sabre/Auth.php @@ -235,7 +235,6 @@ class Auth extends AbstractBasic { \OC_User::handleApacheAuth() ) { $user = $this->userSession->getUser()->getUID(); - \OC_Util::setupFS($user); $this->currentUser = $user; $this->session->close(); return [true, $this->principalPrefix . $user]; |