diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2016-04-18 17:28:10 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2016-04-18 17:28:10 +0200 |
commit | 1626850fc98d619e502eb114d5f26baf06c1e183 (patch) | |
tree | f09987520080ec232019d54e22685f58abac87e3 /apps/updatenotification/appinfo | |
parent | 5c3183cedd9672025199a1298853834df1c1320f (diff) | |
download | nextcloud-server-1626850fc98d619e502eb114d5f26baf06c1e183.tar.gz nextcloud-server-1626850fc98d619e502eb114d5f26baf06c1e183.zip |
Remove deprecated HTTPHelper
Diffstat (limited to 'apps/updatenotification/appinfo')
-rw-r--r-- | apps/updatenotification/appinfo/app.php | 2 | ||||
-rw-r--r-- | apps/updatenotification/appinfo/application.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/updatenotification/appinfo/app.php b/apps/updatenotification/appinfo/app.php index 54bef81305e..a88861c0942 100644 --- a/apps/updatenotification/appinfo/app.php +++ b/apps/updatenotification/appinfo/app.php @@ -21,7 +21,7 @@ if(\OC::$server->getConfig()->getSystemValue('updatechecker', true) === true) { $updater = new \OC\Updater\VersionCheck( - \OC::$server->getHTTPHelper(), + \OC::$server->getHTTPClientService(), \OC::$server->getConfig() ); $updateChecker = new \OCA\UpdateNotification\UpdateChecker( diff --git a/apps/updatenotification/appinfo/application.php b/apps/updatenotification/appinfo/application.php index e0e8dad3d75..08ff4abf766 100644 --- a/apps/updatenotification/appinfo/application.php +++ b/apps/updatenotification/appinfo/application.php @@ -35,7 +35,7 @@ class Application extends App { $container->registerService('AdminController', function(IAppContainer $c) { $updater = new \OC\Updater\VersionCheck( - \OC::$server->getHTTPHelper(), + \OC::$server->getHTTPClientService(), \OC::$server->getConfig() ); return new AdminController( |