summaryrefslogtreecommitdiffstats
path: root/lib/private/Updater.php
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2017-03-13 18:07:41 -0600
committerMorris Jobke <hey@morrisjobke.de>2017-03-13 18:07:41 -0600
commit252858ec5eee50c48d5317f4922fa85a0b789550 (patch)
tree579e166afbcf09120575aa64bb40d0782975e4f6 /lib/private/Updater.php
parentc1cf872f1d99a614bf9d070d1923b78e3e2e26fb (diff)
downloadnextcloud-server-252858ec5eee50c48d5317f4922fa85a0b789550.tar.gz
nextcloud-server-252858ec5eee50c48d5317f4922fa85a0b789550.zip
Do not double cherck app update
In base.php the apps are already checked for an update. No need to repeat this during loading of the app. Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'lib/private/Updater.php')
-rw-r--r--lib/private/Updater.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Updater.php b/lib/private/Updater.php
index 30a9a80cef4..4427e4c48dc 100644
--- a/lib/private/Updater.php
+++ b/lib/private/Updater.php
@@ -365,7 +365,7 @@ class Updater extends BasicEmitter {
// load authentication, filesystem and logging apps after
// upgrading them. Other apps my need to rely on modifying
// user and/or filesystem aspects.
- \OC_App::loadApp($appId, false);
+ \OC_App::loadApp($appId);
}
}
}