aboutsummaryrefslogtreecommitdiffstats
path: root/apps/dav/lib
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2023-02-09 08:48:07 +0100
committerJulius Härtl <jus@bitgrid.net>2023-02-09 10:19:37 +0100
commit7b413a41eb1e937783032e98fd918a1e1ac8ce6d (patch)
tree755d5a2cf80b81456a2d9941e595a8d2e6e5ee93 /apps/dav/lib
parentc10317f7f9f53a4de464915f754896eed7f1ee6c (diff)
downloadnextcloud-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.php3
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;