diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2020-03-30 09:34:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-30 09:34:25 +0200 |
commit | 2200cc85629f449dc8cb747cd6aa0049a3cdab6d (patch) | |
tree | aea025990e7f9e684f7ab7a7a4bdbdf90d262cf1 /apps/dav/lib/Server.php | |
parent | 9e8ac1d24a5cd5f41c0b160d79be49195d4bf8b9 (diff) | |
parent | 55081b7fd29b58600d5e0d13ed678de902098e4f (diff) | |
download | nextcloud-server-2200cc85629f449dc8cb747cd6aa0049a3cdab6d.tar.gz nextcloud-server-2200cc85629f449dc8cb747cd6aa0049a3cdab6d.zip |
Merge pull request #19325 from nextcloud/dependachristoph/composer/sabre-4.0
Update Sabre (and friends) to 4.0
Diffstat (limited to 'apps/dav/lib/Server.php')
-rw-r--r-- | apps/dav/lib/Server.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/lib/Server.php b/apps/dav/lib/Server.php index 2502d53997a..230e72fd277 100644 --- a/apps/dav/lib/Server.php +++ b/apps/dav/lib/Server.php @@ -217,7 +217,7 @@ class Server { $this->server->addPlugin(new SearchPlugin($lazySearchBackend)); // wait with registering these until auth is handled and the filesystem is setup - $this->server->on('beforeMethod', function () use ($root, $lazySearchBackend) { + $this->server->on('beforeMethod:*', function () use ($root, $lazySearchBackend) { // custom properties plugin must be the last one $userSession = \OC::$server->getUserSession(); $user = $userSession->getUser(); |