summaryrefslogtreecommitdiffstats
path: root/settings/Controller
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2018-08-02 14:26:31 +0200
committerJoas Schilling <coding@schilljs.com>2018-08-02 14:26:31 +0200
commita9f8ee4e9d9aead633e77c151f41827c2a4ee30d (patch)
tree93264752f4309d6d89d8df3fb72bb5a53c41816d /settings/Controller
parent2dcae4e8ea4d065a9d84b57f44add3c27d54706e (diff)
downloadnextcloud-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.php2
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;
}