diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2019-08-15 19:30:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-15 19:30:45 +0200 |
commit | f452e23a7db1742afa50eaa80b746afe769bdf7b (patch) | |
tree | cf23e344e4bf5e094830d6c778be78360bded885 /apps/files_trashbin/lib | |
parent | 465e919de12a8f6bdcf1133a677101c4cdf1efc2 (diff) | |
parent | 63d584afb5727737fe73a0ca2ecf720022b33922 (diff) | |
download | nextcloud-server-f452e23a7db1742afa50eaa80b746afe769bdf7b.tar.gz nextcloud-server-f452e23a7db1742afa50eaa80b746afe769bdf7b.zip |
Merge pull request #16666 from nextcloud/feature/calendar/delegation
Feature/calendar/delegation
Diffstat (limited to 'apps/files_trashbin/lib')
-rw-r--r-- | apps/files_trashbin/lib/AppInfo/Application.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/files_trashbin/lib/AppInfo/Application.php b/apps/files_trashbin/lib/AppInfo/Application.php index 761298673ac..4baa82a6b4b 100644 --- a/apps/files_trashbin/lib/AppInfo/Application.php +++ b/apps/files_trashbin/lib/AppInfo/Application.php @@ -23,6 +23,7 @@ namespace OCA\Files_Trashbin\AppInfo; +use OCA\DAV\CalDAV\Proxy\ProxyMapper; use OCA\DAV\Connector\Sabre\Principal; use OCA\Files_Trashbin\Trash\ITrashManager; use OCA\Files_Trashbin\Trash\TrashManager; @@ -61,8 +62,8 @@ class Application extends App { \OC::$server->getGroupManager(), \OC::$server->getShareManager(), \OC::$server->getUserSession(), - \OC::$server->getConfig(), - \OC::$server->getAppManager() + \OC::$server->getAppManager(), + \OC::$server->query(ProxyMapper::class) ); }); |