aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorAndy Scherzinger <info@andy-scherzinger.de>2024-03-19 14:09:49 +0100
committerGitHub <noreply@github.com>2024-03-19 14:09:49 +0100
commit6e4346682f5a4a3d99ea8bdcde8e4f4d7d791db3 (patch)
tree061d1c85d5ede62a54d1a3aa8dd982fb2652fb10 /apps
parentbac58f997c162cd5a563606435d04a025ce3c93a (diff)
parentbae133bf4f43b4815734b2c05c0263061cae2cfa (diff)
downloadnextcloud-server-6e4346682f5a4a3d99ea8bdcde8e4f4d7d791db3.tar.gz
nextcloud-server-6e4346682f5a4a3d99ea8bdcde8e4f4d7d791db3.zip
Merge pull request #44281 from nextcloud/fix/app-discover-fetcher
fix(AppDiscoverFetcher): Do not remove entries as expired that have no expiry date
Diffstat (limited to 'apps')
-rw-r--r--apps/settings/lib/Controller/AppSettingsController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings/lib/Controller/AppSettingsController.php b/apps/settings/lib/Controller/AppSettingsController.php
index 5d92b02d5c1..9dfe4772b93 100644
--- a/apps/settings/lib/Controller/AppSettingsController.php
+++ b/apps/settings/lib/Controller/AppSettingsController.php
@@ -131,7 +131,7 @@ class AppSettingsController extends Controller {
* @NoCSRFRequired
*/
public function getAppDiscoverJSON(): JSONResponse {
- $data = $this->discoverFetcher->get();
+ $data = $this->discoverFetcher->get(true);
return new JSONResponse($data);
}