summaryrefslogtreecommitdiffstats
path: root/apps/updatenotification/appinfo/app.php
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2016-04-11 13:19:22 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2016-04-18 17:12:59 +0200
commit5c3183cedd9672025199a1298853834df1c1320f (patch)
tree6abec1e8882d2fd88b138653686bd5c0a3c6502e /apps/updatenotification/appinfo/app.php
parentfd1740deb604894a8bef515d98c5992a392e6f0a (diff)
downloadnextcloud-server-5c3183cedd9672025199a1298853834df1c1320f.tar.gz
nextcloud-server-5c3183cedd9672025199a1298853834df1c1320f.zip
Move version check code out of class Updater
Diffstat (limited to 'apps/updatenotification/appinfo/app.php')
-rw-r--r--apps/updatenotification/appinfo/app.php5
1 files changed, 2 insertions, 3 deletions
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