Browse Source

Check if elements are set in installer

Since we now have all the apps from the appstore we need to do a bit
more checking.

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
pull/14813/head
Roeland Jago Douma 7 years ago
parent
commit
f021db956c
No known key found for this signature in database GPG Key ID: F941078878347C0C
  1. 4
      lib/private/Installer.php

4
lib/private/Installer.php

@ -391,6 +391,10 @@ class Installer {
foreach($this->apps as $app) {
if($app['id'] === $appId) {
$currentVersion = OC_App::getAppVersion($appId);
if (!isset($app['releases'][0]['version'])) {
return false;
}
$newestVersion = $app['releases'][0]['version'];
if ($currentVersion !== '0' && version_compare($newestVersion, $currentVersion, '>')) {
return $newestVersion;

Loading…
Cancel
Save