summaryrefslogtreecommitdiffstats
path: root/apps/updatenotification
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2019-03-20 12:21:01 +0100
committerRoeland Jago Douma <roeland@famdouma.nl>2019-03-20 15:16:13 +0100
commit2d00e2bbe77ab9bb150555e5cef7a269c8a25b4a (patch)
tree8c7244faa557fef63bc3a65f71a0ce4549966dca /apps/updatenotification
parent95c9e0edd216e7a0afd16da27492ec833728bdb2 (diff)
downloadnextcloud-server-2d00e2bbe77ab9bb150555e5cef7a269c8a25b4a.tar.gz
nextcloud-server-2d00e2bbe77ab9bb150555e5cef7a269c8a25b4a.zip
Do not ignore the max-version for the "update-available" check
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/updatenotification')
-rw-r--r--apps/updatenotification/lib/Controller/APIController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/updatenotification/lib/Controller/APIController.php b/apps/updatenotification/lib/Controller/APIController.php
index 90a5fb782f5..0314ccf38c3 100644
--- a/apps/updatenotification/lib/Controller/APIController.php
+++ b/apps/updatenotification/lib/Controller/APIController.php
@@ -90,7 +90,7 @@ class APIController extends OCSController {
]);
}
- $this->appFetcher->setVersion($newVersion, 'future-apps.json');
+ $this->appFetcher->setVersion($newVersion, 'future-apps.json', false);
// Apps available on the app store for that version
$availableApps = array_map(function(array $app) {