diff options
author | Robin Appelman <robin@icewind.nl> | 2019-11-04 19:25:00 +0100 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2019-11-04 19:51:37 +0100 |
commit | ef2fb51065aabb90e8e4234d84a78f4e047f7d1c (patch) | |
tree | a4a0152950139fb23255f68d7aaf6afd8a3b730f /apps/federatedfilesharing/appinfo/app.php | |
parent | 5ca27085fcb01db920326ea9ad892cc9a49253ab (diff) | |
download | nextcloud-server-ef2fb51065aabb90e8e4234d84a78f4e047f7d1c.tar.gz nextcloud-server-ef2fb51065aabb90e8e4234d84a78f4e047f7d1c.zip |
remove missed manual Application instance constructions
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'apps/federatedfilesharing/appinfo/app.php')
-rw-r--r-- | apps/federatedfilesharing/appinfo/app.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/federatedfilesharing/appinfo/app.php b/apps/federatedfilesharing/appinfo/app.php index 6b273faca80..025bc86b776 100644 --- a/apps/federatedfilesharing/appinfo/app.php +++ b/apps/federatedfilesharing/appinfo/app.php @@ -24,8 +24,9 @@ */ use OCA\FederatedFileSharing\Notifier; +use OCA\FederatedFileSharing\AppInfo\Application; -$app = new \OCA\FederatedFileSharing\AppInfo\Application(); +$app = \OC::$server->query(Application::class); $eventDispatcher = \OC::$server->getEventDispatcher(); $manager = \OC::$server->getNotificationManager(); |