diff options
author | Joas Schilling <coding@schilljs.com> | 2023-07-19 21:56:34 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2023-07-25 11:19:26 +0200 |
commit | 77bc6c32d8b7cfe65f6a0e4ba303997a22f075d7 (patch) | |
tree | 30c9d215b79d0c21ba7ecac0b5fb94865fec2863 /apps/dav/lib/RootCollection.php | |
parent | 43ab741f9cc252ac48612f586b0d545c0c253e5c (diff) | |
download | nextcloud-server-77bc6c32d8b7cfe65f6a0e4ba303997a22f075d7.tar.gz nextcloud-server-77bc6c32d8b7cfe65f6a0e4ba303997a22f075d7.zip |
fix(dispatcher): Move remaining simple cases in apps/ folder to IEventDispatcher
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/dav/lib/RootCollection.php')
-rw-r--r-- | apps/dav/lib/RootCollection.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/lib/RootCollection.php b/apps/dav/lib/RootCollection.php index e4fd814ed81..90be581a2a9 100644 --- a/apps/dav/lib/RootCollection.php +++ b/apps/dav/lib/RootCollection.php @@ -132,7 +132,7 @@ class RootCollection extends SimpleCollection { \OC::$server->getSystemTagObjectMapper(), \OC::$server->getUserSession(), $groupManager, - \OC::$server->getEventDispatcher() + $dispatcher ); $systemTagInUseCollection = \OCP\Server::get(SystemTag\SystemTagsInUseCollection::class); $commentsCollection = new Comments\RootCollection( |