diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2019-08-06 13:40:52 +0200 |
---|---|---|
committer | Georg Ehrke <developer@georgehrke.com> | 2019-08-15 15:41:27 +0200 |
commit | 01a4644cad99c8502f15a7f62f72f4e040670024 (patch) | |
tree | d6e8d5a5d8fe7ed9560df880ee5ef84afddde9a3 /apps/files_trashbin | |
parent | 22f29d8e54be32fe44e5d715aa8ae0dbaf558229 (diff) | |
download | nextcloud-server-01a4644cad99c8502f15a7f62f72f4e040670024.tar.gz nextcloud-server-01a4644cad99c8502f15a7f62f72f4e040670024.zip |
Use the proxymapper to obtain valid proxy data
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/files_trashbin')
-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) ); }); |