diff options
author | Julius Härtl <jus@bitgrid.net> | 2023-02-09 08:48:07 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2023-02-09 10:19:37 +0100 |
commit | 7b413a41eb1e937783032e98fd918a1e1ac8ce6d (patch) | |
tree | 755d5a2cf80b81456a2d9941e595a8d2e6e5ee93 /apps/dav/lib | |
parent | c10317f7f9f53a4de464915f754896eed7f1ee6c (diff) | |
download | nextcloud-server-7b413a41eb1e937783032e98fd918a1e1ac8ce6d.tar.gz nextcloud-server-7b413a41eb1e937783032e98fd918a1e1ac8ce6d.zip |
perf(dav): Do not call general setupFS on ever dav auth
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/dav/lib')
-rw-r--r-- | apps/dav/lib/Connector/Sabre/Auth.php | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/apps/dav/lib/Connector/Sabre/Auth.php b/apps/dav/lib/Connector/Sabre/Auth.php index 1610c554b9b..69821c63c21 100644 --- a/apps/dav/lib/Connector/Sabre/Auth.php +++ b/apps/dav/lib/Connector/Sabre/Auth.php @@ -104,14 +104,11 @@ class Auth extends AbstractBasic { if ($this->userSession->isLoggedIn() && $this->isDavAuthenticated($this->userSession->getUser()->getUID()) ) { - \OC_Util::setupFS($this->userSession->getUser()->getUID()); $this->session->close(); return true; } else { - \OC_Util::setupFS(); //login hooks may need early access to the filesystem try { if ($this->userSession->logClientIn($username, $password, $this->request, $this->throttler)) { - \OC_Util::setupFS($this->userSession->getUser()->getUID()); $this->session->set(self::DAV_AUTHENTICATED, $this->userSession->getUser()->getUID()); $this->session->close(); return true; |