diff options
Diffstat (limited to 'apps/files/lib/App.php')
-rw-r--r-- | apps/files/lib/App.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/files/lib/App.php b/apps/files/lib/App.php index b6b0ffa6917..9e6d35a7538 100644 --- a/apps/files/lib/App.php +++ b/apps/files/lib/App.php @@ -10,6 +10,7 @@ namespace OCA\Files; use OC\NavigationManager; use OCA\Files\Service\ChunkedUploadConfig; use OCP\App\IAppManager; +use OCP\EventDispatcher\IEventDispatcher; use OCP\IConfig; use OCP\IGroupManager; use OCP\INavigationManager; @@ -36,6 +37,7 @@ class App { Server::get(IGroupManager::class), Server::get(IConfig::class), Server::get(LoggerInterface::class), + Server::get(IEventDispatcher::class), ); self::$navigationManager->clear(false); } |