From 5c3183cedd9672025199a1298853834df1c1320f Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Mon, 11 Apr 2016 13:19:22 +0200 Subject: Move version check code out of class Updater --- apps/updatenotification/appinfo/app.php | 5 ++--- apps/updatenotification/appinfo/application.php | 5 ++--- 2 files changed, 4 insertions(+), 6 deletions(-) (limited to 'apps/updatenotification/appinfo') diff --git a/apps/updatenotification/appinfo/app.php b/apps/updatenotification/appinfo/app.php index f257cba6974..54bef81305e 100644 --- a/apps/updatenotification/appinfo/app.php +++ b/apps/updatenotification/appinfo/app.php @@ -20,10 +20,9 @@ */ if(\OC::$server->getConfig()->getSystemValue('updatechecker', true) === true) { - $updater = new \OC\Updater( + $updater = new \OC\Updater\VersionCheck( \OC::$server->getHTTPHelper(), - \OC::$server->getConfig(), - \OC::$server->getIntegrityCodeChecker() + \OC::$server->getConfig() ); $updateChecker = new \OCA\UpdateNotification\UpdateChecker( $updater diff --git a/apps/updatenotification/appinfo/application.php b/apps/updatenotification/appinfo/application.php index 24c0a11af69..e0e8dad3d75 100644 --- a/apps/updatenotification/appinfo/application.php +++ b/apps/updatenotification/appinfo/application.php @@ -34,10 +34,9 @@ class Application extends App { $container = $this->getContainer(); $container->registerService('AdminController', function(IAppContainer $c) { - $updater = new \OC\Updater( + $updater = new \OC\Updater\VersionCheck( \OC::$server->getHTTPHelper(), - \OC::$server->getConfig(), - \OC::$server->getIntegrityCodeChecker() + \OC::$server->getConfig() ); return new AdminController( $c->query('AppName'), -- cgit v1.2.3