diff options
author | Joas Schilling <coding@schilljs.com> | 2018-08-02 14:26:31 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2018-08-02 14:26:31 +0200 |
commit | a9f8ee4e9d9aead633e77c151f41827c2a4ee30d (patch) | |
tree | 93264752f4309d6d89d8df3fb72bb5a53c41816d /settings/Controller | |
parent | 2dcae4e8ea4d065a9d84b57f44add3c27d54706e (diff) | |
download | nextcloud-server-a9f8ee4e9d9aead633e77c151f41827c2a4ee30d.tar.gz nextcloud-server-a9f8ee4e9d9aead633e77c151f41827c2a4ee30d.zip |
Also allow to update apps which are currently not enabled
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'settings/Controller')
-rw-r--r-- | settings/Controller/AppSettingsController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/Controller/AppSettingsController.php b/settings/Controller/AppSettingsController.php index f2ea784595f..61db1ce2697 100644 --- a/settings/Controller/AppSettingsController.php +++ b/settings/Controller/AppSettingsController.php @@ -256,7 +256,7 @@ class AppSettingsController extends Controller { $appData['category'] = $appstoreData['categories']; $newVersion = $this->installer->isUpdateAvailable($appData['id']); - if($newVersion && $this->appManager->isInstalled($appData['id'])) { + if($newVersion) { $appData['update'] = $newVersion; } |