summaryrefslogtreecommitdiffstats
path: root/lib/private/Installer.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/Installer.php')
-rw-r--r--lib/private/Installer.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/Installer.php b/lib/private/Installer.php
index 48bd57f4c10..eb1f8a456bf 100644
--- a/lib/private/Installer.php
+++ b/lib/private/Installer.php
@@ -396,10 +396,10 @@ class Installer {
}
if ($this->apps === null) {
- $apps = $this->appFetcher->get();
+ $this->apps = $this->appFetcher->get();
}
- foreach($apps as $app) {
+ foreach($this->apps as $app) {
if($app['id'] === $appId) {
$currentVersion = OC_App::getAppVersion($appId);
$newestVersion = $app['releases'][0]['version'];